diff options
| -rw-r--r-- | zebra/zebra_trace.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/zebra/zebra_trace.h b/zebra/zebra_trace.h index b2983b7631..49a0c8e793 100644 --- a/zebra/zebra_trace.h +++ b/zebra/zebra_trace.h @@ -57,11 +57,11 @@ TRACEPOINT_EVENT( frr_zebra, netlink_interface, TP_ARGS( - struct nlmsghdr *, h, + struct nlmsghdr *, header, ns_id_t, ns_id, int, startup), TP_FIELDS( - ctf_integer_hex(intptr_t, h, h) + ctf_integer_hex(intptr_t, header, header) ctf_integer(uint32_t, ns_id, ns_id) ctf_integer(uint32_t, startup, startup) ) @@ -71,11 +71,11 @@ TRACEPOINT_EVENT( frr_zebra, netlink_nexthop_change, TP_ARGS( - struct nlmsghdr *, h, + struct nlmsghdr *, header, ns_id_t, ns_id, int, startup), TP_FIELDS( - ctf_integer_hex(intptr_t, h, h) + ctf_integer_hex(intptr_t, header, header) ctf_integer(uint32_t, ns_id, ns_id) ctf_integer(uint32_t, startup, startup) ) @@ -85,11 +85,11 @@ TRACEPOINT_EVENT( frr_zebra, netlink_interface_addr, TP_ARGS( - struct nlmsghdr *, h, + struct nlmsghdr *, header, ns_id_t, ns_id, int, startup), TP_FIELDS( - ctf_integer_hex(intptr_t, h, h) + ctf_integer_hex(intptr_t, header, header) ctf_integer(uint32_t, ns_id, ns_id) ctf_integer(uint32_t, startup, startup) ) @@ -99,11 +99,11 @@ TRACEPOINT_EVENT( frr_zebra, netlink_route_change_read_unicast, TP_ARGS( - struct nlmsghdr *, h, + struct nlmsghdr *, header, ns_id_t, ns_id, int, startup), TP_FIELDS( - ctf_integer_hex(intptr_t, h, h) + ctf_integer_hex(intptr_t, header, header) ctf_integer(uint32_t, ns_id, ns_id) ctf_integer(uint32_t, startup, startup) ) @@ -113,11 +113,11 @@ TRACEPOINT_EVENT( frr_zebra, netlink_rule_change, TP_ARGS( - struct nlmsghdr *, h, + struct nlmsghdr *, header, ns_id_t, ns_id, int, startup), TP_FIELDS( - ctf_integer_hex(intptr_t, h, h) + ctf_integer_hex(intptr_t, header, header) ctf_integer(uint32_t, ns_id, ns_id) ctf_integer(uint32_t, startup, startup) ) |
