]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
dwc_eth_qos: fix interrupt enable race
authorRabin Vincent <rabinv@axis.com>
Tue, 23 Aug 2016 14:31:28 +0000 (16:31 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 Aug 2016 00:11:05 +0000 (17:11 -0700)
commita8184003c0bb1d6362c2af76c560b3caae6832cb
treeaeab620c0607964606a882366e87731c98078657
parent53080fe9c451e7625e71b91c384e7bef1be72b00
dwc_eth_qos: fix interrupt enable race

We currently enable interrupts before we enable NAPI. If an RX interrupt
hits before we enabled NAPI then the NAPI callback is never called and
we leave the hardware with RX interrupts disabled, which of course leads
us to never handling received packets.  Fix this by moving the interrupt
enable to after we've enable NAPI and the reclaim tasklet.

Fixes: cd5e41234729 ("dwc_eth_qos: do phy_start before resetting hardware")
Signed-off-by: Rabin Vincent <rabinv@axis.com>
Signed-off-by: Lars Persson <larper@axis.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/synopsys/dwc_eth_qos.c