Jerin Jacob, Mar 25, 2024 at 11:59:
> +static_assert(offsetof(struct rte_node, ctx) % RTE_CACHE_LINE_SIZE == 0, > + "rte_node ctx must be aligned on a cache line");This will fail in 32bit machine. https://mails.dpdk.org/archives/test-report/2024-March/623806.html
Hi Jerin, yes I saw that :(
I can think of following solution to add before ctx. RTE_MARKER fastpath __rte_cache__aligned;
It will not be taken into account for MSVC. Is that OK?