net/thunderx: use new API to save cycles on aarch64
authorGavin Hu <gavin.hu@arm.com>
Thu, 7 Nov 2019 21:35:27 +0000 (22:35 +0100)
committerDavid Marchand <david.marchand@redhat.com>
Fri, 17 Jan 2020 11:02:21 +0000 (12:02 +0100)
Use the new API to wait in low power state instead of continuous
polling to save CPU cycles and power.

Signed-off-by: Gavin Hu <gavin.hu@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
drivers/net/thunderx/Makefile
drivers/net/thunderx/meson.build
drivers/net/thunderx/nicvf_rxtx.c

index 149638a..969338a 100644 (file)
@@ -10,6 +10,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 LIB = librte_pmd_thunderx_nicvf.a
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 LDLIBS += -lm
 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
index 69819a9..23d9458 100644 (file)
@@ -4,6 +4,7 @@
 subdir('base')
 objs = [base_objs]
 
+allow_experimental_apis = true
 sources = files('nicvf_rxtx.c',
                'nicvf_ethdev.c',
                'nicvf_svf.c'
index 1c42874..90a6098 100644 (file)
@@ -385,8 +385,7 @@ nicvf_fill_rbdr(struct nicvf_rxq *rxq, int to_fill)
                ltail++;
        }
 
-       while (__atomic_load_n(&rbdr->tail, __ATOMIC_RELAXED) != next_tail)
-               rte_pause();
+       rte_wait_until_equal_32(&rbdr->tail, next_tail, __ATOMIC_RELAXED);
 
        __atomic_store_n(&rbdr->tail, ltail, __ATOMIC_RELEASE);
        nicvf_addr_write(door, to_fill);