Commit 0bc92ace authored by Christoph Hellwig's avatar Christoph Hellwig

irq_poll: fold irq_poll_disable_pending into irq_poll_softirq

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
parent ea51190c
...@@ -18,11 +18,6 @@ enum { ...@@ -18,11 +18,6 @@ enum {
IRQ_POLL_F_DISABLE = 1, IRQ_POLL_F_DISABLE = 1,
}; };
static inline int irq_poll_disable_pending(struct irq_poll *iop)
{
return test_bit(IRQ_POLL_F_DISABLE, &iop->state);
}
extern void irq_poll_sched(struct irq_poll *); extern void irq_poll_sched(struct irq_poll *);
extern void irq_poll_init(struct irq_poll *, int, irq_poll_fn *); extern void irq_poll_init(struct irq_poll *, int, irq_poll_fn *);
extern void irq_poll_complete(struct irq_poll *); extern void irq_poll_complete(struct irq_poll *);
......
...@@ -122,7 +122,7 @@ static void irq_poll_softirq(struct softirq_action *h) ...@@ -122,7 +122,7 @@ static void irq_poll_softirq(struct softirq_action *h)
* move the instance around on the list at-will. * move the instance around on the list at-will.
*/ */
if (work >= weight) { if (work >= weight) {
if (irq_poll_disable_pending(iop)) if (test_bit(IRQ_POLL_F_DISABLE, &iop->state))
__irq_poll_complete(iop); __irq_poll_complete(iop);
else else
list_move_tail(&iop->list, list); list_move_tail(&iop->list, list);
......
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