From: Pavan Nikhilesh Date: Thu, 18 Jul 2019 06:51:11 +0000 (+0530) Subject: mempool/octeontx2: fix possible arm64 ABI break X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5b40ec6b966260e0ff66a8a2c689664f75d6a0e6;p=dpdk.git mempool/octeontx2: fix possible arm64 ABI break Since direct register access is used in npa_lf_aura_op_alloc_bulk() use __rte_noinline instead of __rte_always_inline to preserve ABI. Based on the compiler npa_lf_aura_op_alloc_bulk might be inlined differently which may lead to undefined behaviour due to handcoded asm. Fixes: 29893042c29d ("mempool/octeontx2: fix clang build for arm64") Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- diff --git a/drivers/mempool/octeontx2/otx2_mempool_ops.c b/drivers/mempool/octeontx2/otx2_mempool_ops.c index a60a77a4e1..ff63be5675 100644 --- a/drivers/mempool/octeontx2/otx2_mempool_ops.c +++ b/drivers/mempool/octeontx2/otx2_mempool_ops.c @@ -54,7 +54,7 @@ npa_lf_aura_op_search_alloc(const int64_t wdata, int64_t * const addr, return 0; } -static __rte_always_inline int +static __rte_noinline int npa_lf_aura_op_alloc_bulk(const int64_t wdata, int64_t * const addr, unsigned int n, void **obj_table) {