From: David Marchand Date: Sat, 29 Jun 2019 11:58:50 +0000 (+0200) Subject: mem: remove incorrect experimental tag on static symbol X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=146e002c68b1d428696a250464cdb7c46a366f52;p=dpdk.git mem: remove incorrect experimental tag on static symbol This function is not visible from outside this code unit. Fixes: 84e7477e10b1 ("mem: add thread unsafe version for DMA mask check") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Adrien Mazarguil Acked-by: Neil Horman --- diff --git a/lib/librte_eal/common/eal_common_memory.c b/lib/librte_eal/common/eal_common_memory.c index 5ae8d0124d..de6fc1b3a4 100644 --- a/lib/librte_eal/common/eal_common_memory.c +++ b/lib/librte_eal/common/eal_common_memory.c @@ -448,7 +448,7 @@ check_iova(const struct rte_memseg_list *msl __rte_unused, #define MAX_DMA_MASK_BITS 63 /* check memseg iovas are within the required range based on dma mask */ -static int __rte_experimental +static int check_dma_mask(uint8_t maskbits, bool thread_unsafe) { struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;