diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-04-20 09:49:36 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-04-20 09:49:36 -0400 |
| commit | 0bba3bd873050f1179b072144c9124f29a6877dc (patch) | |
| tree | 125596265c0a695bfff03f8d7b8fc77425e0b36f /zebra/zebra_trace.h | |
| parent | 1239b60c06306deb14ab2e18b3d57a67c3327acf (diff) | |
zebra: Name variable better in zebra_trace.h
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_trace.h')
| -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) ) |
