]> git.baikalelectronics.ru Git - kernel.git/commit
tracing: devlink: Use static array for string in devlink_trap_report event
authorSteven Rostedt (Google) <rostedt@goodmis.org>
Tue, 12 Jul 2022 22:58:20 +0000 (18:58 -0400)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Thu, 14 Jul 2022 19:05:57 +0000 (15:05 -0400)
commitb2bc30102c44102f3cfa00b36d69cdc88990b2d3
tree234cd2ab37ff0c81788d7e8a6f543056b09fc10a
parent9e9ea72dcd408138f4c20a45fbfe134802a03bc7
tracing: devlink: Use static array for string in devlink_trap_report event

The trace event devlink_trap_report uses the __dynamic_array() macro to
determine the size of the input_dev_name field. This is because it needs
to test the dev field for NULL, and will use "NULL" if it is. But it also
has the size of the dynamic array as a fixed IFNAMSIZ bytes. This defeats
the purpose of the dynamic array, as this will reserve that amount of
bytes on the ring buffer, and to make matters worse, it will even save
that size in the event as the event expects it to be dynamic (for which it
is not).

Since IFNAMSIZ is just 16 bytes, just make it a static array and this will
remove the meta data from the event that records the size.

Link: https://lkml.kernel.org/r/20220712185820.002d9fb5@gandalf.local.home
Cc: Leon Romanovsky <leon@kernel.org>
Cc: Jiri Pirko <jiri@nvidia.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Paolo Abeni <pabeni@redhat.com>
Cc: netdev@vger.kernel.org
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Tested-by: Ido Schimmel <idosch@nvidia.com>
Acked-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
include/trace/events/devlink.h