]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
net: arc_emac: reset txbd_curr and txbd_dirty pointers to zero
authorAlexander Kochetkov <al.kochet@gmail.com>
Tue, 9 Feb 2016 15:20:39 +0000 (18:20 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 16 Feb 2016 20:26:30 +0000 (15:26 -0500)
EMAC reset internal tx ring pointer to zero at statup.
txbd_curr and txbd_dirty can be different from zero.
That cause ethernet transfer hang (no packets transmitted).

In order to reproduce, run on device:
    ifconfig eth0 down
    ifconfig eth0 up

Signed-off-by: Alexander Kochetkov <al.kochet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/arc/emac_main.c

index 63a63e31d59dd9a72ef0f0e3a727daa79629989a..4f6e5be184dfbcc197317d9a6728f0ad3e258338 100644 (file)
@@ -447,6 +447,9 @@ static int arc_emac_open(struct net_device *ndev)
                *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
        }
 
+       priv->txbd_curr = 0;
+       priv->txbd_dirty = 0;
+
        /* Clean Tx BD's */
        memset(priv->txbd, 0, TX_RING_SZ);