diff options
author | David S. Miller <davem@davemloft.net> | 2013-10-08 21:56:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-08 21:56:09 -0400 |
commit | 9684d7b0dab3cf3a897edd85dca501d413888d56 (patch) | |
tree | 50389861e2baa3ea0d91b5be49b0d370c36039d4 /drivers/net/ethernet/sfc/nic.h | |
parent | 7eec4174ff29cd42f2acfae8112f51c228545d40 (diff) | |
parent | ecb1c9cc215cb5a4390b714d8b09de637f54fa3f (diff) | |
download | op-kernel-dev-9684d7b0dab3cf3a897edd85dca501d413888d56.zip op-kernel-dev-9684d7b0dab3cf3a897edd85dca501d413888d56.tar.gz |
Merge branch 'sfc-3.12' of git://git.kernel.org/pub/scm/linux/kernel/git/bwh/sfc
Ben Hutchings says:
====================
Some more fixes for EF10 support; hopefully the last lot:
1. Fixes for reading statistics, from Edward Cree and Jon Cooper.
2. Addition of ethtool statistics for packets dropped by the hardware
before they were associated with a specific function, from Edward Cree.
3. Only bind to functions that are in control of their associated port,
as the driver currently assumes this is the case.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc/nic.h')
-rw-r--r-- | drivers/net/ethernet/sfc/nic.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/ethernet/sfc/nic.h b/drivers/net/ethernet/sfc/nic.h index fda29d3..890bbbe 100644 --- a/drivers/net/ethernet/sfc/nic.h +++ b/drivers/net/ethernet/sfc/nic.h @@ -386,6 +386,18 @@ enum { EF10_STAT_rx_align_error, EF10_STAT_rx_length_error, EF10_STAT_rx_nodesc_drops, + EF10_STAT_rx_pm_trunc_bb_overflow, + EF10_STAT_rx_pm_discard_bb_overflow, + EF10_STAT_rx_pm_trunc_vfifo_full, + EF10_STAT_rx_pm_discard_vfifo_full, + EF10_STAT_rx_pm_trunc_qbb, + EF10_STAT_rx_pm_discard_qbb, + EF10_STAT_rx_pm_discard_mapping, + EF10_STAT_rx_dp_q_disabled_packets, + EF10_STAT_rx_dp_di_dropped_packets, + EF10_STAT_rx_dp_streaming_packets, + EF10_STAT_rx_dp_emerg_fetch, + EF10_STAT_rx_dp_emerg_wait, EF10_STAT_COUNT }; |