diff options
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r-- | include/linux/ftrace.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index e1583f2639b0..c146c1021a29 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -503,4 +503,25 @@ static inline void trace_hw_branch_oops(void) {} | |||
503 | 503 | ||
504 | #endif /* CONFIG_HW_BRANCH_TRACER */ | 504 | #endif /* CONFIG_HW_BRANCH_TRACER */ |
505 | 505 | ||
506 | /* | ||
507 | * A syscall entry in the ftrace syscalls array. | ||
508 | * | ||
509 | * @syscall_nr: syscall number | ||
510 | */ | ||
511 | struct syscall_trace_entry { | ||
512 | int syscall_nr; | ||
513 | }; | ||
514 | |||
515 | #ifdef CONFIG_FTRACE_SYSCALLS | ||
516 | extern void start_ftrace_syscalls(void); | ||
517 | extern void stop_ftrace_syscalls(void); | ||
518 | extern void ftrace_syscall_enter(struct pt_regs *regs); | ||
519 | extern void ftrace_syscall_exit(struct pt_regs *regs); | ||
520 | #else | ||
521 | static inline void start_ftrace_syscalls(void) { } | ||
522 | static inline void stop_ftrace_syscalls(void) { } | ||
523 | static inline void ftrace_syscall_enter(struct pt_regs *regs) { } | ||
524 | static inline void ftrace_syscall_exit(struct pt_regs *regs) { } | ||
525 | #endif | ||
526 | |||
506 | #endif /* _LINUX_FTRACE_H */ | 527 | #endif /* _LINUX_FTRACE_H */ |