Rename LTTng instrumentation macros
[lttng-modules.git] / instrumentation / events / lttng-module / skb.h
index 3163356c5b7cc2899cbfaf5978f10a4b7ebd4636..106478bdbca8761060b996f71ebbc3c162ea5c18 100644 (file)
@@ -1,17 +1,20 @@
 #undef TRACE_SYSTEM
 #define TRACE_SYSTEM skb
 
-#if !defined(_TRACE_SKB_H) || defined(TRACE_HEADER_MULTI_READ)
-#define _TRACE_SKB_H
+#if !defined(LTTNG_TRACE_SKB_H) || defined(TRACE_HEADER_MULTI_READ)
+#define LTTNG_TRACE_SKB_H
 
+#include "../../../probes/lttng-tracepoint-event.h"
 #include <linux/skbuff.h>
 #include <linux/netdevice.h>
-#include <linux/tracepoint.h>
+#include <linux/version.h>
 
 /*
  * Tracepoint for free an sk_buff:
  */
-TRACE_EVENT(kfree_skb,
+LTTNG_TRACEPOINT_EVENT_MAP(kfree_skb,
+
+       skb_kfree,
 
        TP_PROTO(struct sk_buff *skb, void *location),
 
@@ -33,7 +36,10 @@ TRACE_EVENT(kfree_skb,
                __entry->skbaddr, __entry->protocol, __entry->location)
 )
 
-TRACE_EVENT(consume_skb,
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
+LTTNG_TRACEPOINT_EVENT_MAP(consume_skb,
+
+       skb_consume,
 
        TP_PROTO(struct sk_buff *skb),
 
@@ -49,8 +55,10 @@ TRACE_EVENT(consume_skb,
 
        TP_printk("skbaddr=%p", __entry->skbaddr)
 )
+#endif
 
-TRACE_EVENT(skb_copy_datagram_iovec,
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32))
+LTTNG_TRACEPOINT_EVENT(skb_copy_datagram_iovec,
 
        TP_PROTO(const struct sk_buff *skb, int len),
 
@@ -68,8 +76,9 @@ TRACE_EVENT(skb_copy_datagram_iovec,
 
        TP_printk("skbaddr=%p len=%d", __entry->skbaddr, __entry->len)
 )
+#endif
 
-#endif /* _TRACE_SKB_H */
+#endif /* LTTNG_TRACE_SKB_H */
 
 /* This part must be outside protection */
 #include "../../../probes/define_trace.h"
This page took 0.024789 seconds and 4 git commands to generate.