1 #ifndef TRACEPOINT_DEFS_H
2 #define TRACEPOINT_DEFS_H 1
5 * File can be included directly by headers who only want to access
6 * tracepoint->key to guard out of line trace calls, or the definition of
7 * trace_print_flags{_u64}. Otherwise linux/tracepoint.h should be used.
10 #include <linux/atomic.h>
11 #include <linux/static_key.h>
13 struct trace_print_flags
{
18 struct trace_print_flags_u64
{
19 unsigned long long mask
;
23 struct tracepoint_func
{
30 const char *name
; /* Tracepoint name */
31 struct static_key key
;
32 void (*regfunc
)(void);
33 void (*unregfunc
)(void);
34 struct tracepoint_func __rcu
*funcs
;