ftrace.h 279 B

1234567891011121314
  1. #ifndef ASM_X86__FTRACE_H
  2. #define ASM_X86__FTRACE_H
  3. #ifdef CONFIG_FTRACE
  4. #define MCOUNT_ADDR ((long)(mcount))
  5. #define MCOUNT_INSN_SIZE 5 /* sizeof mcount call */
  6. #ifndef __ASSEMBLY__
  7. extern void mcount(void);
  8. #endif
  9. #endif /* CONFIG_FTRACE */
  10. #endif /* ASM_X86__FTRACE_H */