diff options
author | Jesse Brandeburg <jesse.brandeburg@intel.com> | 2006-11-01 08:47:59 -0800 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-12-02 00:12:00 -0500 |
commit | fcfb1224250d7877b6a6c6a947986e08b2160fb6 (patch) | |
tree | b87742a5b484dcbba418b055337a7f14b2e272dc /drivers/net/e1000/e1000.h | |
parent | fc2307d00c15385fbdbb5928a8517e5f63c3d068 (diff) | |
download | linux-stable-fcfb1224250d7877b6a6c6a947986e08b2160fb6.tar.gz linux-stable-fcfb1224250d7877b6a6c6a947986e08b2160fb6.tar.bz2 linux-stable-fcfb1224250d7877b6a6c6a947986e08b2160fb6.zip |
e1000: add queue restart counter
Add a netif_wake/start_queue counter to the ethtool statistics to indicated
to the user that their transmit ring could be too small for their workload.
Signed-off-by: Jesse brandeburg <jesse.brandeburg@intel.com>
Cc: Jamal Hadi <hadi@cyberus.ca>
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Diffstat (limited to 'drivers/net/e1000/e1000.h')
-rw-r--r-- | drivers/net/e1000/e1000.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index 3f0be02e85e2..896ea8a72386 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h @@ -265,6 +265,7 @@ struct e1000_adapter { /* TX */ struct e1000_tx_ring *tx_ring; /* One per active queue */ + unsigned int restart_queue; unsigned long tx_queue_len; uint32_t txd_cmd; uint32_t tx_int_delay; |