drivers: net: cpsw: enable interrupts after napi enable and clearing previous interrupts
authorMugunthan V N <mugunthanvnm@ti.com>
Thu, 10 Apr 2014 08:53:24 +0000 (14:23 +0530)
committerDavid S. Miller <davem@davemloft.net>
Fri, 11 Apr 2014 20:27:41 +0000 (16:27 -0400)
commitf63a975e8f07a75dbf0386402788330d0bebd8d8
tree03aa9f5740a33f39d7ccd643048e63e94097b73b
parent16e5c57da61cda26998bee91a327960ebd1562f6
drivers: net: cpsw: enable interrupts after napi enable and clearing previous interrupts

When the Ethernet interface is put down and up with heavy Ethernet
traffic, then there is prossibility of an interrupt waiting in irq
controller to be processed, so when the interface is brought up again
just after enable interrupt, it goes to ISR due to the previous
unhandled interrutp and in ISR napi is not scheduled as the napi
is not enabled in ndo_open which results in disabled interrupt for
CPSW and no packets are received in cpsw. So this patch moves enabling
of interupts after napi_enable and clearing CPDMA interrupts.

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw.c