diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2006-03-02 21:21:24 -0500 |
---|---|---|
committer | root <root@jk-desktop.jf.intel.com> | 2006-03-02 21:21:24 -0500 |
commit | 8704163987882f8b989e8143ad1f87c6b7229a13 (patch) | |
tree | 24e16b012722402cedba6f9fbc10dcda4a5eef20 /drivers/net/e1000/e1000.h | |
parent | 6418ecc68e1d9416451b6f78ebb2c0b077e0abf2 (diff) |
e1000: Fixed the following issues with ESB2 (requires ESB2 support):
- Add restriction for ESB2 to MTU size <=9216
- Removed FIFO errors which were not being used
- Fixed issues with loopback
- Power management change for saving state and config space
- WA to disable recieves and reset device on link loss. Reset needed to be done outside the interrupt context - modified existing tx_timeout_task
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: John Ronciak <john.ronciak@intel.com>
Diffstat (limited to 'drivers/net/e1000/e1000.h')
-rw-r--r-- | drivers/net/e1000/e1000.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index 3319c19cbee6..d4266f18bbd9 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h | |||
@@ -252,8 +252,8 @@ struct e1000_adapter { | |||
252 | spinlock_t tx_queue_lock; | 252 | spinlock_t tx_queue_lock; |
253 | #endif | 253 | #endif |
254 | atomic_t irq_sem; | 254 | atomic_t irq_sem; |
255 | struct work_struct tx_timeout_task; | ||
256 | struct work_struct watchdog_task; | 255 | struct work_struct watchdog_task; |
256 | struct work_struct reset_task; | ||
257 | uint8_t fc_autoneg; | 257 | uint8_t fc_autoneg; |
258 | 258 | ||
259 | struct timer_list blink_timer; | 259 | struct timer_list blink_timer; |
@@ -328,7 +328,7 @@ struct e1000_adapter { | |||
328 | struct e1000_rx_ring test_rx_ring; | 328 | struct e1000_rx_ring test_rx_ring; |
329 | 329 | ||
330 | 330 | ||
331 | u32 *config_space; | 331 | uint32_t *config_space; |
332 | int msg_enable; | 332 | int msg_enable; |
333 | #ifdef CONFIG_PCI_MSI | 333 | #ifdef CONFIG_PCI_MSI |
334 | boolean_t have_msi; | 334 | boolean_t have_msi; |