Change integer base to hex for fields representing addresses
[lttng-modules.git] / instrumentation / events / lttng-module / arch / x86 / kvm / mmutrace.h
index dd0c6798f93c09727cb4982f38e4c84c70241583..46b46c362be75c4140dfca129bd5938c1d5ee29f 100644 (file)
@@ -51,7 +51,7 @@ LTTNG_TRACEPOINT_EVENT(
        TP_ARGS(addr, pferr),
 
        TP_FIELDS(
-               ctf_integer(__u64, addr, addr)
+               ctf_integer_hex(__u64, addr, addr)
                ctf_integer(__u32, pferr, pferr)
        )
 )
@@ -65,7 +65,7 @@ LTTNG_TRACEPOINT_EVENT(
        TP_ARGS(addr, write_fault, user_fault, fetch_fault),
 
        TP_FIELDS(
-               ctf_integer(__u64, addr, addr)
+               ctf_integer_hex(__u64, addr, addr)
                ctf_integer(__u32, pferr,
                        (!!write_fault << 1) | (!!user_fault << 2)
                        | (!!fetch_fault << 4))
@@ -208,7 +208,7 @@ LTTNG_TRACEPOINT_EVENT_MAP(
        TP_ARGS(addr, gfn, access),
 
        TP_FIELDS(
-               ctf_integer(u64, addr, addr)
+               ctf_integer_hex(u64, addr, addr)
                ctf_integer(gfn_t, gfn, gfn)
                ctf_integer(unsigned, access, access)
        )
This page took 0.023498 seconds and 4 git commands to generate.