On Wed, Apr 20, 2016 at 10:58:21AM -0700, Florian Fainelli wrote: > This patch overloads the DSA master netdev, aka CPU Ethernet MAC to also > include switch-side statistics, which is useful for debugging purposes, > when the switch is not properly connected to the Ethernet MAC (duplex > mismatch, (RG)MII electrical issues etc.). > > We accomplish this by retaining the original copy of the master netdev's > ethtool_ops, and just overload the 3 operations we care about: > get_sset_count, get_strings and get_ethtool_stats so as to intercept > these calls and call into the original master_netdev ethtool_ops, plus > our own.
Hi Florian Interesting concept. My one concern is that by concatenating the two sets of statistics, we get a name clash. I'm not sure the Marvell switch statistics counters have different names to the Marvell Ethernet driver statistics counters. ethtool does not care, but maybe an SNMP agent using these statistics might not be too happy seeing the same name twice? Andrew