On Mon, 23 May 2022 16:23:46 +0200 Mattias Rönnblom <mattias.ronnb...@ericsson.com> wrote:
> + > + /* make sure the data loads happens before the sn load */ > + rte_atomic_thread_fence(__ATOMIC_ACQUIRE); Why mix __atomic builtin with rte_atomic? Instead: __atomic_thread_fence(__ATOMIC_ACQUIRE);