Fix: format address fields as hexadecimal
[lttng-modules.git] / instrumentation / events / lttng-module / net.h
index 01314ed56f1b1fb797d6d9bf584823ec9a1c55a4..001175b0dbcc750d5b7c5d9ae65cd8736b01a89f 100644 (file)
@@ -27,7 +27,7 @@ LTTNG_TRACEPOINT_EVENT(net_dev_xmit,
 #endif
 
        TP_FIELDS(
-               ctf_integer(void *, skbaddr, skb)
+               ctf_integer_hex(void *, skbaddr, skb)
                ctf_integer(int, rc, rc)
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,40))
                ctf_integer(unsigned int, len, skb_len)
@@ -46,7 +46,7 @@ LTTNG_TRACEPOINT_EVENT_CLASS(net_dev_template,
        TP_ARGS(skb),
 
        TP_FIELDS(
-               ctf_integer(void *, skbaddr, skb)
+               ctf_integer_hex(void *, skbaddr, skb)
                ctf_integer(unsigned int, len, skb->len)
                ctf_string(name, skb->dev->name)
        )
This page took 0.02242 seconds and 4 git commands to generate.