mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 06:02:38 +00:00
d0b6e04a4c
If TRACE_INCLDUE_FILE is defined, <trace/events/TRACE_INCLUDE_FILE.h> will be included and compiled, otherwise it will be <trace/events/TRACE_SYSTEM.h> So TRACE_SYSTEM should be defined outside of #if proctection, just like TRACE_INCLUDE_FILE. Imaging this scenario: #include <trace/events/foo.h> -> TRACE_SYSTEM == foo ... #include <trace/events/bar.h> -> TRACE_SYSTEM == bar ... #define CREATE_TRACE_POINTS #include <trace/events/foo.h> -> TRACE_SYSTEM == bar !!! and then bar.h will be included and compiled. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <4A5A9CF1.2010007@cn.fujitsu.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
41 lines
808 B
C
41 lines
808 B
C
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM skb
|
|
|
|
#if !defined(_TRACE_SKB_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_SKB_H
|
|
|
|
#include <linux/skbuff.h>
|
|
#include <linux/tracepoint.h>
|
|
|
|
/*
|
|
* Tracepoint for free an sk_buff:
|
|
*/
|
|
TRACE_EVENT(kfree_skb,
|
|
|
|
TP_PROTO(struct sk_buff *skb, void *location),
|
|
|
|
TP_ARGS(skb, location),
|
|
|
|
TP_STRUCT__entry(
|
|
__field( void *, skbaddr )
|
|
__field( unsigned short, protocol )
|
|
__field( void *, location )
|
|
),
|
|
|
|
TP_fast_assign(
|
|
__entry->skbaddr = skb;
|
|
if (skb) {
|
|
__entry->protocol = ntohs(skb->protocol);
|
|
}
|
|
__entry->location = location;
|
|
),
|
|
|
|
TP_printk("skbaddr=%p protocol=%u location=%p",
|
|
__entry->skbaddr, __entry->protocol, __entry->location)
|
|
);
|
|
|
|
#endif /* _TRACE_SKB_H */
|
|
|
|
/* This part must be outside protection */
|
|
#include <trace/define_trace.h>
|