aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_ethtool.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_ethtool.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_ethtool.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c
index 43a2a46e287..a4e576a0c54 100644
--- a/drivers/net/ixgbe/ixgbe_ethtool.c
+++ b/drivers/net/ixgbe/ixgbe_ethtool.c
@@ -737,9 +737,14 @@ err_setup:
737 return err; 737 return err;
738} 738}
739 739
740static int ixgbe_get_stats_count(struct net_device *netdev) 740static int ixgbe_get_sset_count(struct net_device *netdev, int sset)
741{ 741{
742 return IXGBE_STATS_LEN; 742 switch (sset) {
743 case ETH_SS_STATS:
744 return IXGBE_STATS_LEN;
745 default:
746 return -EOPNOTSUPP;
747 }
743} 748}
744 749
745static void ixgbe_get_ethtool_stats(struct net_device *netdev, 750static void ixgbe_get_ethtool_stats(struct net_device *netdev,
@@ -931,7 +936,7 @@ static struct ethtool_ops ixgbe_ethtool_ops = {
931 .set_tso = ixgbe_set_tso, 936 .set_tso = ixgbe_set_tso,
932 .get_strings = ixgbe_get_strings, 937 .get_strings = ixgbe_get_strings,
933 .phys_id = ixgbe_phys_id, 938 .phys_id = ixgbe_phys_id,
934 .get_stats_count = ixgbe_get_stats_count, 939 .get_sset_count = ixgbe_get_sset_count,
935 .get_ethtool_stats = ixgbe_get_ethtool_stats, 940 .get_ethtool_stats = ixgbe_get_ethtool_stats,
936 .get_coalesce = ixgbe_get_coalesce, 941 .get_coalesce = ixgbe_get_coalesce,
937 .set_coalesce = ixgbe_set_coalesce, 942 .set_coalesce = ixgbe_set_coalesce,