diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-04-10 09:36:00 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-04-14 12:57:28 -0400 |
commit | a8d154b009168337494fbf345671bab74d3e4b8b (patch) | |
tree | 4097612e1a5cc8bf7658542f7d0f51b815113eaf | |
parent | ea20d9293ce423a39717ed4375393129a2e701f9 (diff) |
tracing: create automated trace defines
This patch lowers the number of places a developer must modify to add
new tracepoints. The current method to add a new tracepoint
into an existing system is to write the trace point macro in the
trace header with one of the macros TRACE_EVENT, TRACE_FORMAT or
DECLARE_TRACE, then they must add the same named item into the C file
with the macro DEFINE_TRACE(name) and then add the trace point.
This change cuts out the needing to add the DEFINE_TRACE(name).
Every file that uses the tracepoint must still include the trace/<type>.h
file, but the one C file must also add a define before the including
of that file.
#define CREATE_TRACE_POINTS
#include <trace/mytrace.h>
This will cause the trace/mytrace.h file to also produce the C code
necessary to implement the trace point.
Note, if more than one trace/<type>.h is used to create the C code
it is best to list them all together.
#define CREATE_TRACE_POINTS
#include <trace/foo.h>
#include <trace/bar.h>
#include <trace/fido.h>
Thanks to Mathieu Desnoyers and Christoph Hellwig for coming up with
the cleaner solution of the define above the includes over my first
design to have the C code include a "special" header.
This patch converts sched, irq and lockdep and skb to use this new
method.
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Neil Horman <nhorman@tuxdriver.com>
Cc: Zhao Lei <zhaolei@cn.fujitsu.com>
Cc: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | include/trace/define_trace.h | 75 | ||||
-rw-r--r-- | include/trace/irq.h | 5 | ||||
-rw-r--r-- | include/trace/kmem.h | 4 | ||||
-rw-r--r-- | include/trace/lockdep.h | 3 | ||||
-rw-r--r-- | include/trace/sched.h | 3 | ||||
-rw-r--r-- | include/trace/skb.h | 3 | ||||
-rw-r--r-- | kernel/exit.c | 4 | ||||
-rw-r--r-- | kernel/fork.c | 2 | ||||
-rw-r--r-- | kernel/irq/handle.c | 7 | ||||
-rw-r--r-- | kernel/kthread.c | 3 | ||||
-rw-r--r-- | kernel/lockdep.c | 12 | ||||
-rw-r--r-- | kernel/sched.c | 10 | ||||
-rw-r--r-- | kernel/signal.c | 2 | ||||
-rw-r--r-- | kernel/softirq.c | 3 | ||||
-rw-r--r-- | mm/util.c | 11 | ||||
-rw-r--r-- | net/core/net-traces.c | 4 |
16 files changed, 105 insertions, 46 deletions
diff --git a/include/trace/define_trace.h b/include/trace/define_trace.h new file mode 100644 index 000000000000..de9dc7d8508b --- /dev/null +++ b/include/trace/define_trace.h | |||
@@ -0,0 +1,75 @@ | |||
1 | /* | ||
2 | * Trace files that want to automate creationg of all tracepoints defined | ||
3 | * in their file should include this file. The following are macros that the | ||
4 | * trace file may define: | ||
5 | * | ||
6 | * TRACE_SYSTEM defines the system the tracepoint is for | ||
7 | * | ||
8 | * TRACE_INCLUDE_FILE if the file name is something other than TRACE_SYSTEM.h | ||
9 | * This macro may be defined to tell define_trace.h what file to include. | ||
10 | * Note, leave off the ".h". | ||
11 | * | ||
12 | * TRACE_INCLUDE_PATH if the path is something other than core kernel include/trace | ||
13 | * then this macro can define the path to use. Note, the path is relative to | ||
14 | * define_trace.h, not the file including it. Full path names for out of tree | ||
15 | * modules must be used. | ||
16 | */ | ||
17 | |||
18 | #ifdef CREATE_TRACE_POINTS | ||
19 | |||
20 | /* Prevent recursion */ | ||
21 | #undef CREATE_TRACE_POINTS | ||
22 | |||
23 | #include <linux/stringify.h> | ||
24 | |||
25 | #undef TRACE_EVENT | ||
26 | #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ | ||
27 | DEFINE_TRACE(name) | ||
28 | |||
29 | #undef TRACE_FORMAT | ||
30 | #define TRACE_FORMAT(name, proto, args, print) \ | ||
31 | DEFINE_TRACE(name) | ||
32 | |||
33 | #undef DECLARE_TRACE | ||
34 | #define DECLARE_TRACE(name, proto, args) \ | ||
35 | DEFINE_TRACE(name) | ||
36 | |||
37 | #undef TRACE_INCLUDE | ||
38 | #undef __TRACE_INCLUDE | ||
39 | |||
40 | #ifndef TRACE_INCLUDE_FILE | ||
41 | # define TRACE_INCLUDE_FILE TRACE_SYSTEM | ||
42 | # define UNDEF_TRACE_INCLUDE_FILE | ||
43 | #endif | ||
44 | |||
45 | #ifndef TRACE_INCLUDE_PATH | ||
46 | # define __TRACE_INCLUDE(system) <trace/system.h> | ||
47 | # define UNDEF_TRACE_INCLUDE_FILE | ||
48 | #else | ||
49 | # define __TRACE_INCLUDE(system) __stringify(TRACE_INCLUDE_PATH/system.h) | ||
50 | #endif | ||
51 | |||
52 | # define TRACE_INCLUDE(system) __TRACE_INCLUDE(system) | ||
53 | |||
54 | /* Let the trace headers be reread */ | ||
55 | #define TRACE_HEADER_MULTI_READ | ||
56 | |||
57 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) | ||
58 | |||
59 | #undef TRACE_HEADER_MULTI_READ | ||
60 | |||
61 | /* Only undef what we defined in this file */ | ||
62 | #ifdef UNDEF_TRACE_INCLUDE_FILE | ||
63 | # undef TRACE_INCLUDE_PATH | ||
64 | # undef UNDEF_TRACE_INCLUDE_FILE | ||
65 | #endif | ||
66 | |||
67 | #ifdef UNDEF_TRACE_INCLUDE_FILE | ||
68 | # undef TRACE_INCLUDE_PATH | ||
69 | # undef UNDEF_TRACE_INCLUDE_FILE | ||
70 | #endif | ||
71 | |||
72 | /* We may be processing more files */ | ||
73 | #define CREATE_TRACE_POINTS | ||
74 | |||
75 | #endif /* CREATE_TRACE_POINTS */ | ||
diff --git a/include/trace/irq.h b/include/trace/irq.h index 04ab4c652225..75e3468e4493 100644 --- a/include/trace/irq.h +++ b/include/trace/irq.h | |||
@@ -51,4 +51,7 @@ TRACE_FORMAT(softirq_exit, | |||
51 | TP_FMT("softirq=%d action=%s", (int)(h - vec), softirq_to_name[h-vec]) | 51 | TP_FMT("softirq=%d action=%s", (int)(h - vec), softirq_to_name[h-vec]) |
52 | ); | 52 | ); |
53 | 53 | ||
54 | #endif | 54 | #endif /* _TRACE_IRQ_H */ |
55 | |||
56 | /* This part must be outside protection */ | ||
57 | #include <trace/define_trace.h> | ||
diff --git a/include/trace/kmem.h b/include/trace/kmem.h index d7d12189e5c8..c22c42f980b5 100644 --- a/include/trace/kmem.h +++ b/include/trace/kmem.h | |||
@@ -188,5 +188,7 @@ TRACE_EVENT(kmem_cache_free, | |||
188 | 188 | ||
189 | TP_printk("call_site=%lx ptr=%p", __entry->call_site, __entry->ptr) | 189 | TP_printk("call_site=%lx ptr=%p", __entry->call_site, __entry->ptr) |
190 | ); | 190 | ); |
191 | #endif /* _TRACE_KMEM_H */ | ||
191 | 192 | ||
192 | #endif | 193 | /* This part must be outside protection */ |
194 | #include <trace/define_trace.h> | ||
diff --git a/include/trace/lockdep.h b/include/trace/lockdep.h index 8ee7900b38c4..4d301e758de3 100644 --- a/include/trace/lockdep.h +++ b/include/trace/lockdep.h | |||
@@ -55,3 +55,6 @@ TRACE_EVENT(lock_acquired, | |||
55 | #endif | 55 | #endif |
56 | 56 | ||
57 | #endif /* _TRACE_LOCKDEP_H */ | 57 | #endif /* _TRACE_LOCKDEP_H */ |
58 | |||
59 | /* This part must be outside protection */ | ||
60 | #include <trace/define_trace.h> | ||
diff --git a/include/trace/sched.h b/include/trace/sched.h index 5b1cf4a28463..ffa1cab586b9 100644 --- a/include/trace/sched.h +++ b/include/trace/sched.h | |||
@@ -334,3 +334,6 @@ TRACE_EVENT(sched_signal_send, | |||
334 | ); | 334 | ); |
335 | 335 | ||
336 | #endif /* _TRACE_SCHED_H */ | 336 | #endif /* _TRACE_SCHED_H */ |
337 | |||
338 | /* This part must be outside protection */ | ||
339 | #include <trace/define_trace.h> | ||
diff --git a/include/trace/skb.h b/include/trace/skb.h index e6fd281f7f81..1e8fabb57c06 100644 --- a/include/trace/skb.h +++ b/include/trace/skb.h | |||
@@ -35,3 +35,6 @@ TRACE_EVENT(kfree_skb, | |||
35 | ); | 35 | ); |
36 | 36 | ||
37 | #endif /* _TRACE_SKB_H */ | 37 | #endif /* _TRACE_SKB_H */ |
38 | |||
39 | /* This part must be outside protection */ | ||
40 | #include <trace/define_trace.h> | ||
diff --git a/kernel/exit.c b/kernel/exit.c index abf9cf3b95c6..2fe9d2c7eeee 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -56,10 +56,6 @@ | |||
56 | #include <asm/mmu_context.h> | 56 | #include <asm/mmu_context.h> |
57 | #include "cred-internals.h" | 57 | #include "cred-internals.h" |
58 | 58 | ||
59 | DEFINE_TRACE(sched_process_free); | ||
60 | DEFINE_TRACE(sched_process_exit); | ||
61 | DEFINE_TRACE(sched_process_wait); | ||
62 | |||
63 | static void exit_mm(struct task_struct * tsk); | 59 | static void exit_mm(struct task_struct * tsk); |
64 | 60 | ||
65 | static void __unhash_process(struct task_struct *p) | 61 | static void __unhash_process(struct task_struct *p) |
diff --git a/kernel/fork.c b/kernel/fork.c index b9e2edd00726..4bebf2639235 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -83,8 +83,6 @@ DEFINE_PER_CPU(unsigned long, process_counts) = 0; | |||
83 | 83 | ||
84 | __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */ | 84 | __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */ |
85 | 85 | ||
86 | DEFINE_TRACE(sched_process_fork); | ||
87 | |||
88 | int nr_processes(void) | 86 | int nr_processes(void) |
89 | { | 87 | { |
90 | int cpu; | 88 | int cpu; |
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index d82142be8dd2..983d8be8dff7 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -17,9 +17,11 @@ | |||
17 | #include <linux/kernel_stat.h> | 17 | #include <linux/kernel_stat.h> |
18 | #include <linux/rculist.h> | 18 | #include <linux/rculist.h> |
19 | #include <linux/hash.h> | 19 | #include <linux/hash.h> |
20 | #include <trace/irq.h> | ||
21 | #include <linux/bootmem.h> | 20 | #include <linux/bootmem.h> |
22 | 21 | ||
22 | #define CREATE_TRACE_POINTS | ||
23 | #include <trace/irq.h> | ||
24 | |||
23 | #include "internals.h" | 25 | #include "internals.h" |
24 | 26 | ||
25 | /* | 27 | /* |
@@ -348,9 +350,6 @@ static void warn_no_thread(unsigned int irq, struct irqaction *action) | |||
348 | "but no thread function available.", irq, action->name); | 350 | "but no thread function available.", irq, action->name); |
349 | } | 351 | } |
350 | 352 | ||
351 | DEFINE_TRACE(irq_handler_entry); | ||
352 | DEFINE_TRACE(irq_handler_exit); | ||
353 | |||
354 | /** | 353 | /** |
355 | * handle_IRQ_event - irq action chain handler | 354 | * handle_IRQ_event - irq action chain handler |
356 | * @irq: the interrupt number | 355 | * @irq: the interrupt number |
diff --git a/kernel/kthread.c b/kernel/kthread.c index 4ebaf8519abf..e1c76924545b 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c | |||
@@ -21,9 +21,6 @@ static DEFINE_SPINLOCK(kthread_create_lock); | |||
21 | static LIST_HEAD(kthread_create_list); | 21 | static LIST_HEAD(kthread_create_list); |
22 | struct task_struct *kthreadd_task; | 22 | struct task_struct *kthreadd_task; |
23 | 23 | ||
24 | DEFINE_TRACE(sched_kthread_stop); | ||
25 | DEFINE_TRACE(sched_kthread_stop_ret); | ||
26 | |||
27 | struct kthread_create_info | 24 | struct kthread_create_info |
28 | { | 25 | { |
29 | /* Information passed to kthread() from kthreadd. */ | 26 | /* Information passed to kthread() from kthreadd. */ |
diff --git a/kernel/lockdep.c b/kernel/lockdep.c index c4582a6ea953..257f21a76c52 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c | |||
@@ -42,12 +42,14 @@ | |||
42 | #include <linux/hash.h> | 42 | #include <linux/hash.h> |
43 | #include <linux/ftrace.h> | 43 | #include <linux/ftrace.h> |
44 | #include <linux/stringify.h> | 44 | #include <linux/stringify.h> |
45 | #include <trace/lockdep.h> | ||
46 | 45 | ||
47 | #include <asm/sections.h> | 46 | #include <asm/sections.h> |
48 | 47 | ||
49 | #include "lockdep_internals.h" | 48 | #include "lockdep_internals.h" |
50 | 49 | ||
50 | #define CREATE_TRACE_POINTS | ||
51 | #include <trace/lockdep.h> | ||
52 | |||
51 | #ifdef CONFIG_PROVE_LOCKING | 53 | #ifdef CONFIG_PROVE_LOCKING |
52 | int prove_locking = 1; | 54 | int prove_locking = 1; |
53 | module_param(prove_locking, int, 0644); | 55 | module_param(prove_locking, int, 0644); |
@@ -2929,8 +2931,6 @@ void lock_set_class(struct lockdep_map *lock, const char *name, | |||
2929 | } | 2931 | } |
2930 | EXPORT_SYMBOL_GPL(lock_set_class); | 2932 | EXPORT_SYMBOL_GPL(lock_set_class); |
2931 | 2933 | ||
2932 | DEFINE_TRACE(lock_acquire); | ||
2933 | |||
2934 | /* | 2934 | /* |
2935 | * We are not always called with irqs disabled - do that here, | 2935 | * We are not always called with irqs disabled - do that here, |
2936 | * and also avoid lockdep recursion: | 2936 | * and also avoid lockdep recursion: |
@@ -2957,8 +2957,6 @@ void lock_acquire(struct lockdep_map *lock, unsigned int subclass, | |||
2957 | } | 2957 | } |
2958 | EXPORT_SYMBOL_GPL(lock_acquire); | 2958 | EXPORT_SYMBOL_GPL(lock_acquire); |
2959 | 2959 | ||
2960 | DEFINE_TRACE(lock_release); | ||
2961 | |||
2962 | void lock_release(struct lockdep_map *lock, int nested, | 2960 | void lock_release(struct lockdep_map *lock, int nested, |
2963 | unsigned long ip) | 2961 | unsigned long ip) |
2964 | { | 2962 | { |
@@ -3061,8 +3059,6 @@ found_it: | |||
3061 | put_lock_stats(stats); | 3059 | put_lock_stats(stats); |
3062 | } | 3060 | } |
3063 | 3061 | ||
3064 | DEFINE_TRACE(lock_acquired); | ||
3065 | |||
3066 | static void | 3062 | static void |
3067 | __lock_acquired(struct lockdep_map *lock, unsigned long ip) | 3063 | __lock_acquired(struct lockdep_map *lock, unsigned long ip) |
3068 | { | 3064 | { |
@@ -3118,8 +3114,6 @@ found_it: | |||
3118 | lock->ip = ip; | 3114 | lock->ip = ip; |
3119 | } | 3115 | } |
3120 | 3116 | ||
3121 | DEFINE_TRACE(lock_contended); | ||
3122 | |||
3123 | void lock_contended(struct lockdep_map *lock, unsigned long ip) | 3117 | void lock_contended(struct lockdep_map *lock, unsigned long ip) |
3124 | { | 3118 | { |
3125 | unsigned long flags; | 3119 | unsigned long flags; |
diff --git a/kernel/sched.c b/kernel/sched.c index 5724508c3b66..e6d4518d47e0 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -72,13 +72,15 @@ | |||
72 | #include <linux/debugfs.h> | 72 | #include <linux/debugfs.h> |
73 | #include <linux/ctype.h> | 73 | #include <linux/ctype.h> |
74 | #include <linux/ftrace.h> | 74 | #include <linux/ftrace.h> |
75 | #include <trace/sched.h> | ||
76 | 75 | ||
77 | #include <asm/tlb.h> | 76 | #include <asm/tlb.h> |
78 | #include <asm/irq_regs.h> | 77 | #include <asm/irq_regs.h> |
79 | 78 | ||
80 | #include "sched_cpupri.h" | 79 | #include "sched_cpupri.h" |
81 | 80 | ||
81 | #define CREATE_TRACE_POINTS | ||
82 | #include <trace/sched.h> | ||
83 | |||
82 | /* | 84 | /* |
83 | * Convert user-nice values [ -20 ... 0 ... 19 ] | 85 | * Convert user-nice values [ -20 ... 0 ... 19 ] |
84 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], | 86 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], |
@@ -118,12 +120,6 @@ | |||
118 | */ | 120 | */ |
119 | #define RUNTIME_INF ((u64)~0ULL) | 121 | #define RUNTIME_INF ((u64)~0ULL) |
120 | 122 | ||
121 | DEFINE_TRACE(sched_wait_task); | ||
122 | DEFINE_TRACE(sched_wakeup); | ||
123 | DEFINE_TRACE(sched_wakeup_new); | ||
124 | DEFINE_TRACE(sched_switch); | ||
125 | DEFINE_TRACE(sched_migrate_task); | ||
126 | |||
127 | #ifdef CONFIG_SMP | 123 | #ifdef CONFIG_SMP |
128 | 124 | ||
129 | static void double_rq_lock(struct rq *rq1, struct rq *rq2); | 125 | static void double_rq_lock(struct rq *rq1, struct rq *rq2); |
diff --git a/kernel/signal.c b/kernel/signal.c index d8034737db4c..1d5703ff003c 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -41,8 +41,6 @@ | |||
41 | 41 | ||
42 | static struct kmem_cache *sigqueue_cachep; | 42 | static struct kmem_cache *sigqueue_cachep; |
43 | 43 | ||
44 | DEFINE_TRACE(sched_signal_send); | ||
45 | |||
46 | static void __user *sig_handler(struct task_struct *t, int sig) | 44 | static void __user *sig_handler(struct task_struct *t, int sig) |
47 | { | 45 | { |
48 | return t->sighand->action[sig - 1].sa.sa_handler; | 46 | return t->sighand->action[sig - 1].sa.sa_handler; |
diff --git a/kernel/softirq.c b/kernel/softirq.c index 2fecefacdc5b..a2d9b458ac2b 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c | |||
@@ -186,9 +186,6 @@ EXPORT_SYMBOL(local_bh_enable_ip); | |||
186 | */ | 186 | */ |
187 | #define MAX_SOFTIRQ_RESTART 10 | 187 | #define MAX_SOFTIRQ_RESTART 10 |
188 | 188 | ||
189 | DEFINE_TRACE(softirq_entry); | ||
190 | DEFINE_TRACE(softirq_exit); | ||
191 | |||
192 | asmlinkage void __do_softirq(void) | 189 | asmlinkage void __do_softirq(void) |
193 | { | 190 | { |
194 | struct softirq_action *h; | 191 | struct softirq_action *h; |
@@ -4,9 +4,11 @@ | |||
4 | #include <linux/module.h> | 4 | #include <linux/module.h> |
5 | #include <linux/err.h> | 5 | #include <linux/err.h> |
6 | #include <linux/sched.h> | 6 | #include <linux/sched.h> |
7 | #include <linux/tracepoint.h> | ||
8 | #include <asm/uaccess.h> | 7 | #include <asm/uaccess.h> |
9 | 8 | ||
9 | #define CREATE_TRACE_POINTS | ||
10 | #include <trace/kmem.h> | ||
11 | |||
10 | /** | 12 | /** |
11 | * kstrdup - allocate space for and copy an existing string | 13 | * kstrdup - allocate space for and copy an existing string |
12 | * @s: the string to duplicate | 14 | * @s: the string to duplicate |
@@ -239,13 +241,6 @@ int __attribute__((weak)) get_user_pages_fast(unsigned long start, | |||
239 | EXPORT_SYMBOL_GPL(get_user_pages_fast); | 241 | EXPORT_SYMBOL_GPL(get_user_pages_fast); |
240 | 242 | ||
241 | /* Tracepoints definitions. */ | 243 | /* Tracepoints definitions. */ |
242 | DEFINE_TRACE(kmalloc); | ||
243 | DEFINE_TRACE(kmem_cache_alloc); | ||
244 | DEFINE_TRACE(kmalloc_node); | ||
245 | DEFINE_TRACE(kmem_cache_alloc_node); | ||
246 | DEFINE_TRACE(kfree); | ||
247 | DEFINE_TRACE(kmem_cache_free); | ||
248 | |||
249 | EXPORT_TRACEPOINT_SYMBOL(kmalloc); | 244 | EXPORT_TRACEPOINT_SYMBOL(kmalloc); |
250 | EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc); | 245 | EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc); |
251 | EXPORT_TRACEPOINT_SYMBOL(kmalloc_node); | 246 | EXPORT_TRACEPOINT_SYMBOL(kmalloc_node); |
diff --git a/net/core/net-traces.c b/net/core/net-traces.c index c8fb45665e4f..801772059474 100644 --- a/net/core/net-traces.c +++ b/net/core/net-traces.c | |||
@@ -19,11 +19,11 @@ | |||
19 | #include <linux/workqueue.h> | 19 | #include <linux/workqueue.h> |
20 | #include <linux/netlink.h> | 20 | #include <linux/netlink.h> |
21 | #include <linux/net_dropmon.h> | 21 | #include <linux/net_dropmon.h> |
22 | #include <trace/skb.h> | ||
23 | 22 | ||
24 | #include <asm/unaligned.h> | 23 | #include <asm/unaligned.h> |
25 | #include <asm/bitops.h> | 24 | #include <asm/bitops.h> |
26 | 25 | ||
26 | #define CREATE_TRACE_POINTS | ||
27 | #include <trace/skb.h> | ||
27 | 28 | ||
28 | DEFINE_TRACE(kfree_skb); | ||
29 | EXPORT_TRACEPOINT_SYMBOL_GPL(kfree_skb); | 29 | EXPORT_TRACEPOINT_SYMBOL_GPL(kfree_skb); |