macb: restore wrap bit when performing underrun cleanup
authorTord Andersson <tord.andersson@endian.se>
Wed, 3 Aug 2011 22:11:47 +0000 (22:11 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Aug 2011 09:04:32 +0000 (02:04 -0700)
When TX underrun occurs, a cleanup is performed that marks all buffers
as used. As a side effect it also clears the wrap bit in the last
buffer. This patch will restore the wrap bit.

Signed-off-by: Tord Andersson <tord.andersson@endian.se>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/macb.c

index 0fcdc25699d8880238d9db011cd084a3ecc3b3de..dc4e305a1087c69a0e09b4cbe50b189ff15b8cc1 100644 (file)
@@ -322,6 +322,9 @@ static void macb_tx(struct macb *bp)
                for (i = 0; i < TX_RING_SIZE; i++)
                        bp->tx_ring[i].ctrl = MACB_BIT(TX_USED);
 
+               /* Add wrap bit */
+               bp->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
+
                /* free transmit buffer in upper layer*/
                for (tail = bp->tx_tail; tail != head; tail = NEXT_TX(tail)) {
                        struct ring_info *rp = &bp->tx_skb[tail];