diff options
author | Andrew Lunn <andrew@lunn.ch> | 2018-03-01 02:02:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-04 13:34:18 -0500 |
commit | 88c060549a4c555d59965801d1e811b71614c2b7 (patch) | |
tree | b73154fc531efd68f3ae02e525b357b590336d77 /include/net/dsa.h | |
parent | efab163bbc19e5dbd2b7756c1f26defc9c27d6ba (diff) | |
download | linux-88c060549a4c555d59965801d1e811b71614c2b7.tar.bz2 |
dsa: Pass the port to get_sset_count()
By passing the port, we allow different ports to have different
statistics. This is useful since some ports have SERDES interfaces
with their own statistic counters.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index 0ad17b63684d..60fb4ec8ba61 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -359,7 +359,7 @@ struct dsa_switch_ops { void (*get_strings)(struct dsa_switch *ds, int port, uint8_t *data); void (*get_ethtool_stats)(struct dsa_switch *ds, int port, uint64_t *data); - int (*get_sset_count)(struct dsa_switch *ds); + int (*get_sset_count)(struct dsa_switch *ds, int port); /* * ethtool Wake-on-LAN |