X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=instrumentation%2Fevents%2Flttng-module%2Fnet.h;h=01314ed56f1b1fb797d6d9bf584823ec9a1c55a4;hb=d2507215d183300e9933c68a039f3aa07d5a57a4;hp=f4a0d97ee13b2c92cced3906579ec6d3f6e3b683;hpb=f127e61ee231d002fb9a7803643a157e06f6d2e2;p=lttng-modules.git diff --git a/instrumentation/events/lttng-module/net.h b/instrumentation/events/lttng-module/net.h index f4a0d97e..01314ed5 100644 --- a/instrumentation/events/lttng-module/net.h +++ b/instrumentation/events/lttng-module/net.h @@ -28,11 +28,12 @@ LTTNG_TRACEPOINT_EVENT(net_dev_xmit, TP_FIELDS( ctf_integer(void *, skbaddr, skb) - ctf_integer(unsigned int, len, skb_len) ctf_integer(int, rc, rc) #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,40)) + ctf_integer(unsigned int, len, skb_len) ctf_string(name, dev->name) #else + ctf_integer(unsigned int, len, skb->len) ctf_string(name, skb->dev->name) #endif ) @@ -58,14 +59,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),