mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 00:38:55 +00:00
cxgb3 - Remove BUG_ON from t3b_intr_napi
In some cases, SG_DATA_INTR won't clear on read and the following interrupt may cause us to assert because NAPI is already scheduled. Remove the assertion, NAPI can handle attempts to rearm it while it's already scheduled. Signed-off-by: Divy Le Ray <divy@chelsio.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
f2c6879e06
commit
f2aa52086f
@ -2199,14 +2199,12 @@ static irqreturn_t t3b_intr_napi(int irq, void *cookie)
|
||||
if (likely(map & 1)) {
|
||||
dev = adap->sge.qs[0].netdev;
|
||||
|
||||
BUG_ON(napi_is_scheduled(dev));
|
||||
if (likely(__netif_rx_schedule_prep(dev)))
|
||||
__netif_rx_schedule(dev);
|
||||
}
|
||||
if (map & 2) {
|
||||
dev = adap->sge.qs[1].netdev;
|
||||
|
||||
BUG_ON(napi_is_scheduled(dev));
|
||||
if (likely(__netif_rx_schedule_prep(dev)))
|
||||
__netif_rx_schedule(dev);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user