Fix: format address fields as hexadecimal
[lttng-modules.git] / instrumentation / events / lttng-module / skb.h
index 2079580aa0977a60e020e48461f4dbe6bffa9f71..e29411f86d850107110264595d74902e12e70f27 100644 (file)
@@ -21,8 +21,8 @@ LTTNG_TRACEPOINT_EVENT_MAP(kfree_skb,
        TP_ARGS(skb, location),
 
        TP_FIELDS(
-               ctf_integer(void *, skbaddr, skb)
-               ctf_integer(void *, location, location)
+               ctf_integer_hex(void *, skbaddr, skb)
+               ctf_integer_hex(void *, location, location)
                ctf_integer_network(unsigned short, protocol, skb->protocol)
        )
 )
@@ -37,7 +37,7 @@ LTTNG_TRACEPOINT_EVENT_MAP(consume_skb,
        TP_ARGS(skb),
 
        TP_FIELDS(
-               ctf_integer(void *, skbaddr, skb)
+               ctf_integer_hex(void *, skbaddr, skb)
        )
 )
 #endif
@@ -50,7 +50,7 @@ LTTNG_TRACEPOINT_EVENT(skb_copy_datagram_iovec,
        TP_ARGS(skb, len),
 
        TP_FIELDS(
-               ctf_integer(const void *, skbaddr, skb)
+               ctf_integer_hex(const void *, skbaddr, skb)
                ctf_integer(int, len, len)
        )
 )
This page took 0.023776 seconds and 4 git commands to generate.