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> --- drivers/compress/nitrox/nitrox_comp_reqmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/compress/nitrox/nitrox_comp_reqmgr.c b/drivers/compress/nitrox/nitrox_comp_reqmgr.c index ca45c3e..89af855 100644 --- a/drivers/compress/nitrox/nitrox_comp_reqmgr.c +++ b/drivers/compress/nitrox/nitrox_comp_reqmgr.c @@ -304,7 +304,7 @@ struct nitrox_sgtable { struct nitrox_softreq { struct nitrox_zip_instr instr; - struct nitrox_zip_result zip_res __rte_aligned(8); + alignas(8) struct nitrox_zip_result zip_res; uint8_t decomp_threshold[NITROX_ZIP_MAX_ONFSIZE]; struct rte_comp_op *op; struct nitrox_sgtable src; -- 1.8.3.1