blob: 84bc4197e73659c3ff48967e7710fbf5fb549c36 [file] [log] [blame]
Frederic Weisbecker47788c52009-04-08 20:40:59 +02001#ifndef _TRACE_SYSCALL_H
2#define _TRACE_SYSCALL_H
3
Jason Barona871bd32009-08-10 16:52:31 -04004#include <linux/tracepoint.h>
Jason Baronfb34a082009-08-10 16:52:47 -04005#include <linux/unistd.h>
6#include <linux/ftrace_event.h>
Jason Barona871bd32009-08-10 16:52:31 -04007
Frederic Weisbecker47788c52009-04-08 20:40:59 +02008#include <asm/ptrace.h>
9
Jason Barona871bd32009-08-10 16:52:31 -040010
Frederic Weisbecker47788c52009-04-08 20:40:59 +020011/*
12 * A syscall entry in the ftrace syscalls array.
13 *
14 * @name: name of the syscall
Lai Jiangshanc252f652009-12-01 16:23:47 +080015 * @syscall_nr: number of the syscall
Frederic Weisbecker47788c52009-04-08 20:40:59 +020016 * @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])
Li Zefan540b7b82009-08-19 15:54:51 +080019 * @enter_event: associated syscall_enter trace event
20 * @exit_event: associated syscall_exit trace event
Frederic Weisbecker47788c52009-04-08 20:40:59 +020021 */
22struct syscall_metadata {
23 const char *name;
Lai Jiangshanc252f652009-12-01 16:23:47 +080024 int syscall_nr;
Frederic Weisbecker47788c52009-04-08 20:40:59 +020025 int nb_args;
26 const char **types;
27 const char **args;
Steven Rostedt2e33af02010-04-22 10:35:55 -040028 struct list_head enter_fields;
Li Zefan540b7b82009-08-19 15:54:51 +080029
30 struct ftrace_event_call *enter_event;
31 struct ftrace_event_call *exit_event;
Frederic Weisbecker47788c52009-04-08 20:40:59 +020032};
33
Frederic Weisbecker47788c52009-04-08 20:40:59 +020034#endif /* _TRACE_SYSCALL_H */