aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000/e1000_hw.h
diff options
context:
space:
mode:
authorMitch Williams <mitch.a.williams@intel.com>2006-09-27 12:53:37 -0700
committerAuke Kok <juke-jan.h.kok@intel.com>2006-09-27 12:53:37 -0700
commit49559854c9ea6d6950631d558d33faff49fa74f3 (patch)
tree555e34f173fccb3d6802e3affe9dafd4cea299c4 /drivers/net/e1000/e1000_hw.h
parent35574764c7eafab4ec0aa92c18a78a51acc8a710 (diff)
downloadlinux-49559854c9ea6d6950631d558d33faff49fa74f3.tar.gz
e1000: add multicast stats counters
Add 4 multicast and broadcast hardware counters (rx/tx), and eliminate as many non-hardware counters as possible. Signed-off-by: Mitch Williams <mitch.a.williams@intel.com> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Diffstat (limited to 'drivers/net/e1000/e1000_hw.h')
-rw-r--r--drivers/net/e1000/e1000_hw.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/e1000/e1000_hw.h b/drivers/net/e1000/e1000_hw.h
index 47f34f213ac511..113344eb0e92ea 100644
--- a/drivers/net/e1000/e1000_hw.h
+++ b/drivers/net/e1000/e1000_hw.h
@@ -1298,6 +1298,7 @@ struct e1000_hw_stats {
uint64_t algnerrc;
uint64_t symerrs;
uint64_t rxerrc;
+ uint64_t txerrc;
uint64_t mpc;
uint64_t scc;
uint64_t ecol;
@@ -1330,8 +1331,9 @@ struct e1000_hw_stats {
uint64_t gotch;
uint64_t rnbc;
uint64_t ruc;
- uint64_t rfc;
uint64_t roc;
+ uint64_t rlerrc;
+ uint64_t rfc;
uint64_t rjc;
uint64_t mgprc;
uint64_t mgpdc;