]>
git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/trace/events/skb.h
2 #define TRACE_SYSTEM skb
4 #if !defined(_TRACE_SKB_H) || defined(TRACE_HEADER_MULTI_READ)
7 #include <linux/skbuff.h>
8 #include <linux/netdevice.h>
9 #include <linux/tracepoint.h>
12 * Tracepoint for free an sk_buff:
14 TRACE_EVENT(kfree_skb
,
16 TP_PROTO(struct sk_buff
*skb
, void *location
),
18 TP_ARGS(skb
, location
),
21 __field( void *, skbaddr
)
22 __field( unsigned short, protocol
)
23 __field( void *, location
)
27 __entry
->skbaddr
= skb
;
29 __entry
->protocol
= ntohs(skb
->protocol
);
31 __entry
->location
= location
;
34 TP_printk("skbaddr=%p protocol=%u location=%p",
35 __entry
->skbaddr
, __entry
->protocol
, __entry
->location
)
38 TRACE_EVENT(skb_copy_datagram_iovec
,
40 TP_PROTO(const struct sk_buff
*skb
, int len
),
45 __field( const void *, skbaddr
)
50 __entry
->skbaddr
= skb
;
54 TP_printk("skbaddr=%p len=%d", __entry
->skbaddr
, __entry
->len
)
57 #endif /* _TRACE_SKB_H */
59 /* This part must be outside protection */
60 #include <trace/define_trace.h>