mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 22:30:52 +07:00
net: socionext: Reset tx queue in ndo_stop
We observed that packets and bytes count are not reset
when user performs interface down. Eventually, tx queue is
exhausted and packets will not be sent out.
To avoid this problem, resets tx queue in ndo_stop.
Fixes: 533dd11a12
("net: socionext: Add Synquacer NetSec driver")
Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
Signed-off-by: Yoshitoyo Osaki <osaki.yoshitoyo@socionext.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a3241a91de
commit
8d5b0bf611
@ -955,6 +955,9 @@ static void netsec_uninit_pkt_dring(struct netsec_priv *priv, int id)
|
||||
dring->head = 0;
|
||||
dring->tail = 0;
|
||||
dring->pkt_cnt = 0;
|
||||
|
||||
if (id == NETSEC_RING_TX)
|
||||
netdev_reset_queue(priv->ndev);
|
||||
}
|
||||
|
||||
static void netsec_free_dring(struct netsec_priv *priv, int id)
|
||||
|
Loading…
Reference in New Issue
Block a user