Skip to content

Commit

Permalink
net: netsec: enable tx-irq during open callback
Browse files Browse the repository at this point in the history
Enable TX-irq as well during ndo_open() as we can not count upon
RX to arrive early enough to trigger the napi. This patch is critical
for installation over network.

Fixes: 533dd11 ("net: socionext: Add Synquacer NetSec driver")
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jassi Brar authored and David S. Miller committed Apr 16, 2018
1 parent eda7d46 commit c009f41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/socionext/netsec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1313,8 +1313,8 @@ static int netsec_netdev_open(struct net_device *ndev)
napi_enable(&priv->napi);
netif_start_queue(ndev);

/* Enable RX intr. */
netsec_write(priv, NETSEC_REG_INTEN_SET, NETSEC_IRQ_RX);
/* Enable TX+RX intr. */
netsec_write(priv, NETSEC_REG_INTEN_SET, NETSEC_IRQ_RX | NETSEC_IRQ_TX);

return 0;
err3:
Expand Down

0 comments on commit c009f41

Please sign in to comment.