net: dsa: mv88e6xxx: replace ATU violation prints with trace points
authorVladimir Oltean <vladimir.oltean@nxp.com>
Fri, 9 Dec 2022 17:28:16 +0000 (19:28 +0200)
committerJakub Kicinski <kuba@kernel.org>
Mon, 12 Dec 2022 23:01:18 +0000 (15:01 -0800)
commit8646384d80f3d3b4a66b3284dbbd8232d1b8799e
tree724801f249bfd873038e8bdc221b56616a654061
parent4bf24ad09bc0b05e97fb48b962b2c9246fc76727
net: dsa: mv88e6xxx: replace ATU violation prints with trace points

In applications where the switch ports must perform 802.1X based
authentication and are therefore locked, ATU violation interrupts are
quite to be expected as part of normal operation. The problem is that
they currently spam the kernel log, even if rate limited.

Create a series of trace points, all derived from the same event class,
which log these violations to the kernel's trace buffer, which is both
much faster and much easier to ignore than printing to a serial console.

New usage model:

$ trace-cmd list | grep mv88e6xxx
mv88e6xxx
mv88e6xxx:mv88e6xxx_atu_full_violation
mv88e6xxx:mv88e6xxx_atu_miss_violation
mv88e6xxx:mv88e6xxx_atu_member_violation
$ trace-cmd record -e mv88e6xxx sleep 10

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Saeed Mahameed <saeed@kernel.org>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/dsa/mv88e6xxx/Makefile
drivers/net/dsa/mv88e6xxx/global1_atu.c
drivers/net/dsa/mv88e6xxx/trace.c [new file with mode: 0644]
drivers/net/dsa/mv88e6xxx/trace.h [new file with mode: 0644]