diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2009-10-27 16:49:49 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-28 09:20:17 +0100 |
commit | 094919a4b0c56d6afbfb5ea14567fbb2f8d47554 (patch) | |
tree | aa58e687d3e918b097b1aeaca9467e66d957ad65 /drivers/net/igb/igb_ethtool.c | |
parent | igb: add new data structure for handling interrupts and NAPI (diff) | |
download | linux-094919a4b0c56d6afbfb5ea14567fbb2f8d47554.tar.xz linux-094919a4b0c56d6afbfb5ea14567fbb2f8d47554.zip |
igb: remove rx checksum good counter
Counting packets with a good checksum can cause a significant amount of cache
line bouncing due to the shared counter being written to by all of the queues.
In order to avoid this I am removing the counter since we still have the
checksum failed counter which will tell us if there are any issues.
Signed-off-by: Alexander Duyck <alexander.h.duyck@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/igb/igb_ethtool.c')
-rw-r--r-- | drivers/net/igb/igb_ethtool.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/igb/igb_ethtool.c b/drivers/net/igb/igb_ethtool.c index f71276fec3ff..2929546115c1 100644 --- a/drivers/net/igb/igb_ethtool.c +++ b/drivers/net/igb/igb_ethtool.c @@ -95,7 +95,6 @@ static const struct igb_stats igb_gstrings_stats[] = { { "tx_flow_control_xon", IGB_STAT(stats.xontxc) }, { "tx_flow_control_xoff", IGB_STAT(stats.xofftxc) }, { "rx_long_byte_count", IGB_STAT(stats.gorc) }, - { "rx_csum_offload_good", IGB_STAT(hw_csum_good) }, { "rx_csum_offload_errors", IGB_STAT(hw_csum_err) }, { "tx_dma_out_of_sync", IGB_STAT(stats.doosync) }, { "alloc_rx_buff_failed", IGB_STAT(alloc_rx_buff_failed) }, |