ring: use WFE to wait for tail update on aarch64
authorRuifeng Wang <ruifeng.wang@arm.com>
Wed, 7 Jul 2021 05:48:38 +0000 (13:48 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 9 Jul 2021 19:33:01 +0000 (21:33 +0200)
Instead of polling for tail to be updated, use WFE instruction.

Signed-off-by: Gavin Hu <gavin.hu@arm.com>
Signed-off-by: Ruifeng Wang <ruifeng.wang@arm.com>
Reviewed-by: Steve Capper <steve.capper@arm.com>
Reviewed-by: Ola Liljedahl <ola.liljedahl@arm.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
lib/ring/rte_ring_c11_pvt.h
lib/ring/rte_ring_generic_pvt.h

index 759192f..37e0b2a 100644 (file)
@@ -2,6 +2,7 @@
  *
  * Copyright (c) 2017,2018 HXT-semitech Corporation.
  * Copyright (c) 2007-2009 Kip Macy kmacy@freebsd.org
+ * Copyright (c) 2021 Arm Limited
  * All rights reserved.
  * Derived from FreeBSD's bufring.h
  * Used as BSD-3 Licensed with permission from Kip Macy.
@@ -21,8 +22,7 @@ __rte_ring_update_tail(struct rte_ring_headtail *ht, uint32_t old_val,
         * we need to wait for them to complete
         */
        if (!single)
-               while (unlikely(ht->tail != old_val))
-                       rte_pause();
+               rte_wait_until_equal_32(&ht->tail, old_val, __ATOMIC_RELAXED);
 
        __atomic_store_n(&ht->tail, new_val, __ATOMIC_RELEASE);
 }
index 532deb5..c95ad7e 100644 (file)
@@ -23,8 +23,7 @@ __rte_ring_update_tail(struct rte_ring_headtail *ht, uint32_t old_val,
         * we need to wait for them to complete
         */
        if (!single)
-               while (unlikely(ht->tail != old_val))
-                       rte_pause();
+               rte_wait_until_equal_32(&ht->tail, old_val, __ATOMIC_RELAXED);
 
        ht->tail = new_val;
 }