diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2005-12-13 00:06:22 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-12-13 00:06:22 -0500 |
commit | fd803241744ad6e4262b6588c6af89e8fb794098 (patch) | |
tree | d8c4261a4799a2c9ee980cdd6a0c3c5ac61cafed /drivers/net/e1000/e1000.h | |
parent | ff7eba15ae65e4299fd9e0fbf067477ce6b43d91 (diff) |
e1000: Fixes for 8357x
- TSO workaround
- Fixes eeprom version reporting
- Fix loopback test
- Fix for WOL
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: John Ronciak <john.ronciak@intel.com>
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Diffstat (limited to 'drivers/net/e1000/e1000.h')
-rw-r--r-- | drivers/net/e1000/e1000.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index 3f653a93e1bc..e02e9ba2e18b 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h | |||
@@ -188,11 +188,13 @@ struct e1000_tx_ring { | |||
188 | /* array of buffer information structs */ | 188 | /* array of buffer information structs */ |
189 | struct e1000_buffer *buffer_info; | 189 | struct e1000_buffer *buffer_info; |
190 | 190 | ||
191 | struct e1000_buffer previous_buffer_info; | ||
192 | spinlock_t tx_lock; | 191 | spinlock_t tx_lock; |
193 | uint16_t tdh; | 192 | uint16_t tdh; |
194 | uint16_t tdt; | 193 | uint16_t tdt; |
195 | uint64_t pkt; | 194 | uint64_t pkt; |
195 | |||
196 | boolean_t last_tx_tso; | ||
197 | |||
196 | }; | 198 | }; |
197 | 199 | ||
198 | struct e1000_rx_ring { | 200 | struct e1000_rx_ring { |