Instead of polling for mcslock to be updated, use wait until scheme
for this case.
Signed-off-by: Feifei Wang <feifei.wang2@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
/* More nodes added to the queue by other CPUs.
* Wait until the next pointer is set.
*/
- while (__atomic_load_n(&me->next, __ATOMIC_RELAXED) == NULL)
- rte_pause();
+ uintptr_t *next;
+ next = (uintptr_t *)&me->next;
+ RTE_WAIT_UNTIL_MASKED(next, UINTPTR_MAX, !=, 0,
+ __ATOMIC_RELAXED);
}
/* Pass lock to next waiter. */