Re: [PATCH v3 08/39] mbuf: remove unnecessary explicit alignment

2024-02-14 Thread Tyler Retzlaff
On Wed, Feb 14, 2024 at 02:12:17PM +0100, David Marchand wrote: > On Wed, Feb 14, 2024 at 8:07 AM Tyler Retzlaff > wrote: > > > > Remove explicit alignment with __rte_aligned(sizeof(T)) on buf_iova > > field in the absence of packing the field should be correctly aligned. > > > > Signed-off-by: Ty

Re: [PATCH v3 08/39] mbuf: remove unnecessary explicit alignment

2024-02-14 Thread David Marchand
On Wed, Feb 14, 2024 at 8:07 AM Tyler Retzlaff wrote: > > Remove explicit alignment with __rte_aligned(sizeof(T)) on buf_iova > field in the absence of packing the field should be correctly aligned. > > Signed-off-by: Tyler Retzlaff > --- > lib/mbuf/rte_mbuf_core.h | 6 +++--- > 1 file changed,

[PATCH v3 08/39] mbuf: remove unnecessary explicit alignment

2024-02-13 Thread Tyler Retzlaff
Remove explicit alignment with __rte_aligned(sizeof(T)) on buf_iova field in the absence of packing the field should be correctly aligned. Signed-off-by: Tyler Retzlaff --- lib/mbuf/rte_mbuf_core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/mbuf/rte_mbuf_core.h