]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/trace/syscall.h
trace_syscalls: Remove enter_id exit_id
[net-next-2.6.git] / include / trace / syscall.h
CommitLineData
47788c58
FW
1#ifndef _TRACE_SYSCALL_H
2#define _TRACE_SYSCALL_H
3
a871bd33 4#include <linux/tracepoint.h>
fb34a08c
JB
5#include <linux/unistd.h>
6#include <linux/ftrace_event.h>
a871bd33 7
47788c58
FW
8#include <asm/ptrace.h>
9
a871bd33 10
47788c58
FW
11/*
12 * A syscall entry in the ftrace syscalls array.
13 *
14 * @name: name of the syscall
15 * @nb_args: number of parameters it takes
16 * @types: list of types as strings
17 * @args: list of args as strings (args[i] matches types[i])
540b7b8d
LZ
18 * @enter_event: associated syscall_enter trace event
19 * @exit_event: associated syscall_exit trace event
47788c58
FW
20 */
21struct syscall_metadata {
22 const char *name;
23 int nb_args;
24 const char **types;
25 const char **args;
540b7b8d
LZ
26
27 struct ftrace_event_call *enter_event;
28 struct ftrace_event_call *exit_event;
47788c58
FW
29};
30
31#ifdef CONFIG_FTRACE_SYSCALLS
c44fc770 32extern unsigned long arch_syscall_addr(int nr);
31c16b13 33extern int syscall_name_to_nr(const char *name);
bd1a5c84 34
10a5b66f
LZ
35extern int syscall_enter_format(struct ftrace_event_call *call,
36 struct trace_seq *s);
37extern int syscall_exit_format(struct ftrace_event_call *call,
38 struct trace_seq *s);
540b7b8d
LZ
39extern int syscall_enter_define_fields(struct ftrace_event_call *call);
40extern int syscall_exit_define_fields(struct ftrace_event_call *call);
bd1a5c84
MH
41extern int reg_event_syscall_enter(struct ftrace_event_call *call);
42extern void unreg_event_syscall_enter(struct ftrace_event_call *call);
43extern int reg_event_syscall_exit(struct ftrace_event_call *call);
44extern void unreg_event_syscall_exit(struct ftrace_event_call *call);
45extern int
46ftrace_format_syscall(struct ftrace_event_call *call, struct trace_seq *s);
64c12e04
JB
47enum print_line_t print_syscall_enter(struct trace_iterator *iter, int flags);
48enum print_line_t print_syscall_exit(struct trace_iterator *iter, int flags);
f4b5ffcc
JB
49#endif
50#ifdef CONFIG_EVENT_PROFILE
51int reg_prof_syscall_enter(char *name);
52void unreg_prof_syscall_enter(char *name);
53int reg_prof_syscall_exit(char *name);
54void unreg_prof_syscall_exit(char *name);
55
47788c58
FW
56#endif
57
58#endif /* _TRACE_SYSCALL_H */