Merge branch 'dsa-trace-events'
authorDavid S. Miller <davem@davemloft.net>
Wed, 12 Apr 2023 07:36:07 +0000 (08:36 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 12 Apr 2023 07:36:07 +0000 (08:36 +0100)
commitbbda0f0d151cc05b830bb41ed65c4dc2b616c21e
tree358b258ee28e847e70171711b2d7d31004815160
parent18bb56ab4477b966e2974b96a5e3bf9ba052aac5
parent02020bd70fa6abcb1c2a8525ce7c1500dd4f44a8
Merge branch 'dsa-trace-events'

Vladimir Oltean says:

====================
DSA trace events

This series introduces the "dsa" trace event class, with the following
events:

$ trace-cmd list | grep dsa
dsa
dsa:dsa_fdb_add_hw
dsa:dsa_mdb_add_hw
dsa:dsa_fdb_del_hw
dsa:dsa_mdb_del_hw
dsa:dsa_fdb_add_bump
dsa:dsa_mdb_add_bump
dsa:dsa_fdb_del_drop
dsa:dsa_mdb_del_drop
dsa:dsa_fdb_del_not_found
dsa:dsa_mdb_del_not_found
dsa:dsa_lag_fdb_add_hw
dsa:dsa_lag_fdb_add_bump
dsa:dsa_lag_fdb_del_hw
dsa:dsa_lag_fdb_del_drop
dsa:dsa_lag_fdb_del_not_found
dsa:dsa_vlan_add_hw
dsa:dsa_vlan_del_hw
dsa:dsa_vlan_add_bump
dsa:dsa_vlan_del_drop
dsa:dsa_vlan_del_not_found

These are useful to debug refcounting issues on CPU and DSA ports, where
entries may remain lingering, or may be removed too soon, depending on
bugs in higher layers of the network stack.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>