mirror of https://gitee.com/openkylin/linux.git
amd-xgbe: Use __napi_schedule_irqoff
Change from calling __napi_schedule to __napi_schedule_irqoff when running in interrupt context or when called by netpoll with interrupts already disabled. The Tx timer function will continue to use __napi_schedule. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
491aefb38a
commit
793494228f
|
@ -356,7 +356,7 @@ static irqreturn_t xgbe_isr(int irq, void *data)
|
|||
xgbe_disable_rx_tx_ints(pdata);
|
||||
|
||||
/* Turn on polling */
|
||||
__napi_schedule(&pdata->napi);
|
||||
__napi_schedule_irqoff(&pdata->napi);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -409,7 +409,7 @@ static irqreturn_t xgbe_dma_isr(int irq, void *data)
|
|||
disable_irq_nosync(channel->dma_irq);
|
||||
|
||||
/* Turn on polling */
|
||||
__napi_schedule(&channel->napi);
|
||||
__napi_schedule_irqoff(&channel->napi);
|
||||
}
|
||||
|
||||
return IRQ_HANDLED;
|
||||
|
|
Loading…
Reference in New Issue