Commit ffb5bce0 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: r6040: Utilize __napi_schedule_irqoff

We are already in hard IRQ context, so we can use
__napi_schedule_irqoff() to save a few operations.
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9507ffc2
...@@ -690,7 +690,7 @@ static irqreturn_t r6040_interrupt(int irq, void *dev_id) ...@@ -690,7 +690,7 @@ static irqreturn_t r6040_interrupt(int irq, void *dev_id)
if (likely(napi_schedule_prep(&lp->napi))) { if (likely(napi_schedule_prep(&lp->napi))) {
/* Mask off RX interrupt */ /* Mask off RX interrupt */
misr &= ~(RX_INTS | TX_INTS); misr &= ~(RX_INTS | TX_INTS);
__napi_schedule(&lp->napi); __napi_schedule_irqoff(&lp->napi);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment