Lines Matching refs:noinstr
18 Non-instrumentable code - noinstr
27 Such code must be marked with the 'noinstr' attribute, placing that code into a
30 noinstr and using instrumentation_begin() and instrumentation_end() to flag the
35 noinstr void entry(void)
37 handle_entry(); // <-- must be 'noinstr' or '__always_inline'
45 handle_exit(); // <-- must be 'noinstr' or '__always_inline'
48 This allows verification of the 'noinstr' restrictions via objtool on
68 noinstr void syscall(struct pt_regs *regs, int nr)
148 noinstr void interrupt(struct pt_regs *regs, int nr)
233 noinstr void nmi(struct pt_regs *regs)
249 noinstr void debug(struct pt_regs *regs)