mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-06 05:36:39 +07:00
r8169: simplify interrupt handler
Simplify the interrupt handler a little and make it better readable. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
098b01ad98
commit
05bbe5584f
@ -6520,20 +6520,15 @@ static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget
|
||||
static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
|
||||
{
|
||||
struct rtl8169_private *tp = dev_instance;
|
||||
int handled = 0;
|
||||
u16 status;
|
||||
u16 status = rtl_get_events(tp);
|
||||
|
||||
status = rtl_get_events(tp);
|
||||
if (status && status != 0xffff) {
|
||||
status &= RTL_EVENT_NAPI | tp->event_slow;
|
||||
if (status) {
|
||||
handled = 1;
|
||||
if (status == 0xffff || !(status & (RTL_EVENT_NAPI | tp->event_slow)))
|
||||
return IRQ_NONE;
|
||||
|
||||
rtl_irq_disable(tp);
|
||||
napi_schedule_irqoff(&tp->napi);
|
||||
}
|
||||
}
|
||||
return IRQ_RETVAL(handled);
|
||||
rtl_irq_disable(tp);
|
||||
napi_schedule_irqoff(&tp->napi);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user