Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating documentation.
Signed-off-by: Tyler Retzlaff <roret...@linux.microsoft.com> --- app/pdump/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pdump/main.c b/app/pdump/main.c index a9205e1..3bdbb8d 100644 --- a/app/pdump/main.c +++ b/app/pdump/main.c @@ -106,7 +106,7 @@ struct pdump_stats { uint64_t freed_pkts; }; -struct pdump_tuples { +struct __rte_cache_aligned pdump_tuples { /* cli params */ uint16_t port; char *device_id; @@ -133,7 +133,7 @@ struct pdump_tuples { /* stats */ struct pdump_stats stats; -} __rte_cache_aligned; +}; static struct pdump_tuples pdump_t[APP_ARG_TCPDUMP_MAX_TUPLES]; struct parse_val { -- 1.8.3.1