oflags = atomic_fetch_or(IRQ_WORK_CLAIMED, &work->flags);
/*
* If the work is already pending, no need to raise the IPI.
- * The pairing atomic_xchg() in irq_work_run() makes sure
+ * The pairing atomic_fetch_andnot() in irq_work_run() makes sure
* everything we did before is visible.
*/
if (oflags & IRQ_WORK_PENDING)
{
struct irq_work *work, *tmp;
struct llist_node *llnode;
- int flags;
BUG_ON(!irqs_disabled());
llnode = llist_del_all(list);
llist_for_each_entry_safe(work, tmp, llnode, llnode) {
+ int flags;
/*
* Clear the PENDING bit, after this point the @work
* can be re-used.
* to claim that work don't rely on us to handle their data
* while we are in the middle of the func.
*/
- flags = atomic_read(&work->flags) & ~IRQ_WORK_PENDING;
- atomic_xchg(&work->flags, flags);
+ flags = atomic_fetch_andnot(IRQ_WORK_PENDING, &work->flags);
work->func(work);
/*