On Mon, Mar 25, 2024 at 4:32 PM Robin Jarry <rja...@redhat.com> wrote: > > 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?
Why?. rte_mbuf has a similar scheme. RTE_MARKER cacheline1 __rte_cache_min_aligned; >