aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_ethtool.c
diff options
context:
space:
mode:
authorMallikarjuna R Chilakala <mallikarjuna.chilakala@intel.com>2009-11-23 01:32:06 -0500
committerDavid S. Miller <davem@davemloft.net>2009-11-23 13:44:35 -0500
commit94b982b2e4be9661fe1c3893aa780a711b09cd30 (patch)
tree5971d1a319805376569c944b78d19801725f3331 /drivers/net/ixgbe/ixgbe_ethtool.c
parent713d039426a80ed78e71294cfb5d0a009bb20b42 (diff)
ixgbe: Modify 82599 HWRSC statistics counters
Divide 82599 HWRSC counters into aggregated and flushed to count number of packets getting coalesced per TCP connection. Signed-off-by: Mallikarjuna R Chilakala <mallikarjuna.chilakala@intel.com> Acked-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_ethtool.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_ethtool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c
index 74f04e183545..84ab4db7074f 100644
--- a/drivers/net/ixgbe/ixgbe_ethtool.c
+++ b/drivers/net/ixgbe/ixgbe_ethtool.c
@@ -79,7 +79,8 @@ static struct ixgbe_stats ixgbe_gstrings_stats[] = {
79 {"rx_over_errors", IXGBE_NETDEV_STAT(stats.rx_over_errors)}, 79 {"rx_over_errors", IXGBE_NETDEV_STAT(stats.rx_over_errors)},
80 {"rx_crc_errors", IXGBE_NETDEV_STAT(stats.rx_crc_errors)}, 80 {"rx_crc_errors", IXGBE_NETDEV_STAT(stats.rx_crc_errors)},
81 {"rx_frame_errors", IXGBE_NETDEV_STAT(stats.rx_frame_errors)}, 81 {"rx_frame_errors", IXGBE_NETDEV_STAT(stats.rx_frame_errors)},
82 {"hw_rsc_count", IXGBE_STAT(rsc_count)}, 82 {"hw_rsc_aggregated", IXGBE_STAT(rsc_total_count)},
83 {"hw_rsc_flushed", IXGBE_STAT(rsc_total_flush)},
83 {"fdir_match", IXGBE_STAT(stats.fdirmatch)}, 84 {"fdir_match", IXGBE_STAT(stats.fdirmatch)},
84 {"fdir_miss", IXGBE_STAT(stats.fdirmiss)}, 85 {"fdir_miss", IXGBE_STAT(stats.fdirmiss)},
85 {"rx_fifo_errors", IXGBE_NETDEV_STAT(stats.rx_fifo_errors)}, 86 {"rx_fifo_errors", IXGBE_NETDEV_STAT(stats.rx_fifo_errors)},