Fix: net instrumentation namespacing
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 16 Apr 2015 21:13:37 +0000 (17:13 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 16 Apr 2015 21:13:37 +0000 (17:13 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
instrumentation/events/lttng-module/net.h

index f4a0d97ee13b2c92cced3906579ec6d3f6e3b683..d91aac054b5c726d83c8d0d25fe7f34e0b67471a 100644 (file)
@@ -58,14 +58,22 @@ LTTNG_TRACEPOINT_EVENT_INSTANCE(net_dev_template, net_dev_queue,
        TP_ARGS(skb)
 )
 
-LTTNG_TRACEPOINT_EVENT_INSTANCE(net_dev_template, netif_receive_skb,
+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(net_dev_template,
+
+       netif_receive_skb,
+
+       net_if_receive_skb,
 
        TP_PROTO(struct sk_buff *skb),
 
        TP_ARGS(skb)
 )
 
-LTTNG_TRACEPOINT_EVENT_INSTANCE(net_dev_template, netif_rx,
+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(net_dev_template,
+
+       netif_rx,
+
+       net_if_rx,
 
        TP_PROTO(struct sk_buff *skb),
 
This page took 0.02576 seconds and 4 git commands to generate.