#ifndef _TRACE_SYSCALL_H #define _TRACE_SYSCALL_H #include #include #include #include #include /* * A syscall entry in the ftrace syscalls array. * * @name: name of the syscall * @syscall_nr: number of the syscall * @nb_args: number of parameters it takes * @types: list of types as strings * @args: list of args as strings (args[i] matches types[i]) * @enter_fields: list of fields for syscall_enter trace event * @enter_event: associated syscall_enter trace event * @exit_event: associated syscall_exit trace event */ struct syscall_metadata { const char *name; int syscall_nr; int nb_args; const char **types; const char **args; struct list_head enter_fields; struct trace_event_call *enter_event; struct trace_event_call *exit_event; }; #if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS) static inline void syscall_tracepoint_update(struct task_struct *p) { if (test_thread_flag(TIF_SYSCALL_TRACEPOINT)) set_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT); else clear_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT); } #else static inline void syscall_tracepoint_update(struct task_struct *p) { } #endif #endif /* _TRACE_SYSCALL_H */ -back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bottomley <James.Bottomley@HansenPartnership.com>2016-12-26 20:32:48 -0800
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2016-12-26 20:32:48 -0800
commitdb27edf80c894e89b9710d20a8d0f02327f36ca0 (patch)
tree3936038d135ed116e4c7282fa1094d2fea929904 /drivers/usb/chipidea
parent7ce7d89f48834cefece7804d38fc5d85382edf77 (diff)
parent7961d53d22375bb9e8ae8063533b9059102ed39d (diff)
Merge remote-tracking branch 'mkp-scsi/4.10/scsi-fixes' into fixes
Diffstat (limited to 'drivers/usb/chipidea')