]>
git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/trace/events/skb.h
e499863b96693b108fef4c2bc5b07fd52624ba63
2 #define TRACE_SYSTEM skb
4 #if !defined(_TRACE_SKB_H) || defined(TRACE_HEADER_MULTI_READ)
7 #include <linux/skbuff.h>
8 #include <linux/tracepoint.h>
11 * Tracepoint for free an sk_buff:
13 TRACE_EVENT(kfree_skb
,
15 TP_PROTO(struct sk_buff
*skb
, void *location
),
17 TP_ARGS(skb
, location
),
20 __field( void *, skbaddr
)
21 __field( unsigned short, protocol
)
22 __field( void *, location
)
26 __entry
->skbaddr
= skb
;
28 __entry
->protocol
= ntohs(skb
->protocol
);
30 __entry
->location
= location
;
33 TP_printk("skbaddr=%p protocol=%u location=%p",
34 __entry
->skbaddr
, __entry
->protocol
, __entry
->location
)
37 #endif /* _TRACE_SKB_H */
39 /* This part must be outside protection */
40 #include <trace/define_trace.h>