Fix: arm-32 build
[lttng-modules.git] / instrumentation / syscalls / headers / arm-32-syscalls-3.4.25_integers_override.h
index d5af6d0288137f9fe760f8c7cda7daa8c4cea5f7..79efa547cb17dacfe8aef81a8fc9f3a40745e7ea 100644 (file)
@@ -8,33 +8,23 @@
 SC_LTTNG_TRACEPOINT_EVENT(arm_fadvise64_64,
        TP_PROTO(int fd, int advice, loff_t offset, loff_t len),
        TP_ARGS(fd, advice, offset, len),
-       TP_STRUCT__entry(
-               __field_hex(int, fd)
-               __field_hex(int, advice)
-               __field_hex(loff_t, offset)
-               __field_hex(loff_t, len)),
-       TP_fast_assign(
-               tp_assign(fd, fd)
-               tp_assign(advice, advice)
-               tp_assign(offset, offset)
-               tp_assign(len, len)),
-       TP_printk()
+       TP_FIELDS(
+               ctf_integer_hex(int, fd, fd)
+               ctf_integer_hex(int, advice, advice)
+               ctf_integer_hex(loff_t, offset, offset)
+               ctf_integer_hex(loff_t, len, len)
+       )
 )
 
 SC_LTTNG_TRACEPOINT_EVENT(sync_file_range2,
        TP_PROTO(int fd, loff_t offset, loff_t nbytes, unsigned int flags),
        TP_ARGS(fd, offset, nbytes, flags),
-       TP_STRUCT__entry(
-               __field_hex(int, fd)
-               __field_hex(loff_t, offset)
-               __field_hex(loff_t, nbytes)
-               __field_hex(unsigned int, flags)),
-       TP_fast_assign(
-               tp_assign(fd, fd)
-               tp_assign(offset, offset)
-               tp_assign(nbytes, nbytes)
-               tp_assign(flags, flags)),
-       TP_printk()
+       TP_FIELDS(
+               ctf_integer_hex(int, fd, fd)
+               ctf_integer_hex(loff_t, offset, offset)
+               ctf_integer_hex(loff_t, nbytes, nbytes)
+               ctf_integer_hex(unsigned int, flags, flags)
+       )
 )
 
 #else  /* CREATE_SYSCALL_TABLE */
This page took 0.02366 seconds and 4 git commands to generate.