Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 1 | #ifndef _TRACE_SYSCALL_H |
| 2 | #define _TRACE_SYSCALL_H |
| 3 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 4 | #include <linux/tracepoint.h> |
Jason Baron | fb34a08 | 2009-08-10 16:52:47 -0400 | [diff] [blame] | 5 | #include <linux/unistd.h> |
| 6 | #include <linux/ftrace_event.h> |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 7 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 8 | #include <asm/ptrace.h> |
| 9 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 10 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 11 | /* |
| 12 | * A syscall entry in the ftrace syscalls array. |
| 13 | * |
| 14 | * @name: name of the syscall |
Lai Jiangshan | c252f65 | 2009-12-01 16:23:47 +0800 | [diff] [blame] | 15 | * @syscall_nr: number of the syscall |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 16 | * @nb_args: number of parameters it takes |
| 17 | * @types: list of types as strings |
| 18 | * @args: list of args as strings (args[i] matches types[i]) |
Tom Zanussi | 44a6a4e | 2013-06-29 00:08:05 -0500 | [diff] [blame] | 19 | * @enter_fields: list of fields for syscall_enter trace event |
Li Zefan | 540b7b8 | 2009-08-19 15:54:51 +0800 | [diff] [blame] | 20 | * @enter_event: associated syscall_enter trace event |
| 21 | * @exit_event: associated syscall_exit trace event |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 22 | */ |
| 23 | struct syscall_metadata { |
| 24 | const char *name; |
Lai Jiangshan | c252f65 | 2009-12-01 16:23:47 +0800 | [diff] [blame] | 25 | int syscall_nr; |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 26 | int nb_args; |
| 27 | const char **types; |
| 28 | const char **args; |
Steven Rostedt | 2e33af0 | 2010-04-22 10:35:55 -0400 | [diff] [blame] | 29 | struct list_head enter_fields; |
Li Zefan | 540b7b8 | 2009-08-19 15:54:51 +0800 | [diff] [blame] | 30 | |
| 31 | struct ftrace_event_call *enter_event; |
| 32 | struct ftrace_event_call *exit_event; |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 33 | }; |
| 34 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 35 | #endif /* _TRACE_SYSCALL_H */ |