diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-09-28 09:48:14 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-10 10:50:15 -0700 |
commit | ef24adc26f1c2712b9bc759116b30f721a7a5b61 (patch) | |
tree | 6fbe52dd843cc6854774a1f7d598420b79e4aa55 | |
parent | dc8a4bca289e51866f01a41a29793199cd0e28f0 (diff) | |
download | linux-stable-ef24adc26f1c2712b9bc759116b30f721a7a5b61.tar.gz linux-stable-ef24adc26f1c2712b9bc759116b30f721a7a5b61.tar.bz2 linux-stable-ef24adc26f1c2712b9bc759116b30f721a7a5b61.zip |
sky2: fix transmit state on resume
Already upstream.
After resume, driver has reset the chip so the current state
of transmit checksum offload state machine and DMA state machine
will be undefined.
The fix is to set the state so that first Tx will set MSS and offset
values.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/net/sky2.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index d9c8b9f692b7..607b1a3228d5 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c @@ -831,6 +831,20 @@ static inline struct sky2_tx_le *get_tx_le(struct sky2_port *sky2) return le; } +static void tx_init(struct sky2_port *sky2) +{ + struct sky2_tx_le *le; + + sky2->tx_prod = sky2->tx_cons = 0; + sky2->tx_tcpsum = 0; + sky2->tx_last_mss = 0; + + le = get_tx_le(sky2); + le->addr = 0; + le->opcode = OP_ADDR64 | HW_OWNER; + sky2->tx_addr64 = 0; +} + static inline struct tx_ring_info *tx_le_re(struct sky2_port *sky2, struct sky2_tx_le *le) { @@ -1244,7 +1258,8 @@ static int sky2_up(struct net_device *dev) GFP_KERNEL); if (!sky2->tx_ring) goto err_out; - sky2->tx_prod = sky2->tx_cons = 0; + + tx_init(sky2); sky2->rx_le = pci_alloc_consistent(hw->pdev, RX_LE_BYTES, &sky2->rx_le_map); |