Commit 79349422 authored by Lendacky, Thomas's avatar Lendacky, Thomas Committed by David S. Miller
Browse files

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: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 491aefb3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;