#undef TRACE_SYSTEM #define TRACE_SYSTEM raw_syscalls #define TRACE_INCLUDE_FILE syscalls #if !defined(_TRACE_EVENTS_SYSCALLS_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_EVENTS_SYSCALLS_H #include #include #include #ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS TRACE_EVENT_FN(sys_enter, TP_PROTO(struct pt_regs *regs, long id), TP_ARGS(regs, id), TP_STRUCT__entry( __field( long, id ) __array( unsigned long, args, 6 ) ), TP_fast_assign( __entry->id = id; syscall_get_arguments(current, regs, 0, 6, __entry->args); ), TP_printk("NR %ld (%lx, %lx, %lx, %lx, %lx, %lx)", __entry->id, __entry->args[0], __entry->args[1], __entry->args[2], __entry->args[3], __entry->args[4], __entry->args[5]), syscall_regfunc, syscall_unregfunc ); TRACE_EVENT_FLAGS(sys_enter, TRACE_EVENT_FL_CAP_ANY) TRACE_EVENT_FN(sys_exit, TP_PROTO(struct pt_regs *regs, long ret), TP_ARGS(regs, ret), TP_STRUCT__entry( __field( long, id ) __field( long, ret ) ), TP_fast_assign( __entry->id = syscall_get_nr(current, regs); __entry->ret = ret; ), TP_printk("NR %ld = %ld", __entry->id, __entry->ret), syscall_regfunc, syscall_unregfunc ); TRACE_EVENT_FLAGS(sys_exit, TRACE_EVENT_FL_CAP_ANY) #endif /* CONFIG_HAVE_SYSCALL_TRACEPOINTS */ #endif /* _TRACE_EVENTS_SYSCALLS_H */ /* This part must be outside protection */ #include xt plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2017-01-26 17:15:44 +0100
committerJohannes Berg <johannes.berg@intel.com>2017-01-26 18:03:09 +0100
commit228c8c6b1f4376788e9d5ab00d50b10228eb40d3 (patch)
treedfd7010fa9480284fe72bb2c4ab50a5225792a10 /include/math-emu/quad.h
parent731977e97b3697454a862fec656c2561eabc0b87 (diff)
wireless: define cipher/AKM suites using a macro
The spec writes cipher/AKM suites as something like 00-0F-AC:9, but the part after the colon isn't hex, it's decimal, so that we've already had a few mistakes (in other code, or unmerged patches) to e.g. write 0x000FAC10 instead of 0x000FAC0A. Use a macro to avoid that problem. Reviewed-by: Luca Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/math-emu/quad.h')