[PATCH v2 74/83] baseband/turbo_sw: move alignment attribute on types
Tyler Retzlaff
roretzla at linux.microsoft.com
Mon Apr 15 22:04:36 CEST 2024
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 <roretzla at linux.microsoft.com>
Acked-by: Morten Brørup <mb at smartsharesystems.com>
---
drivers/baseband/turbo_sw/bbdev_turbo_software.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/baseband/turbo_sw/bbdev_turbo_software.c b/drivers/baseband/turbo_sw/bbdev_turbo_software.c
index 8ddc7ff..574743a 100644
--- a/drivers/baseband/turbo_sw/bbdev_turbo_software.c
+++ b/drivers/baseband/turbo_sw/bbdev_turbo_software.c
@@ -72,7 +72,7 @@ struct turbo_sw_params {
};
/* queue */
-struct turbo_sw_queue {
+struct __rte_cache_aligned turbo_sw_queue {
/* Ring for processed (encoded/decoded) operations which are ready to
* be dequeued.
*/
@@ -95,7 +95,7 @@ struct turbo_sw_queue {
uint8_t *adapter_output;
/* Operation type of this queue */
enum rte_bbdev_op_type type;
-} __rte_cache_aligned;
+};
#ifdef RTE_BBDEV_SDK_AVX2
--
1.8.3.1
More information about the dev
mailing list