eal: fix build with conflicting libc variable memory_order

The cited commit introduced functions with 'int memory_order' argument.
The C11 standard section 7.17.1.4 defines 'memory_order' as the
"enumerated type whose enumerators identify memory ordering constraints".

A compilation error occurs:
error: declaration of 'memory_order' shadows a global declaration
    [-Werror=shadow]
     rte_atomic_thread_fence(int memory_order)

This issue was hit when trying to compile OVS with gcc 4.8.5. This
compiler version does not provide stdatomic.h, so enum memory_order is
redefined in OVS code.
In another case, if the compiler does provide stdatomic.h header,
passing -Wsystem-headers in the CFLAGS will also cause that failure.

Fix it by changing the argument name 'memory_order' to 'memorder'.

Fixes: 672a150563 ("eal: add wrapper for C11 atomic thread fence")

Signed-off-by: Eli Britstein <elibr@nvidia.com>
Reviewed-by: Asaf Penso <asafp@nvidia.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
This commit is contained in:
Eli Britstein 2020-10-15 15:10:17 +00:00 committed by David Marchand
parent e0a1cd7a62
commit 057d9a92f0
5 changed files with 10 additions and 10 deletions

View File

@ -34,9 +34,9 @@ extern "C" {
#define rte_io_rmb() rte_rmb()
static __rte_always_inline void
rte_atomic_thread_fence(int memory_order)
rte_atomic_thread_fence(int memorder)
{
__atomic_thread_fence(memory_order);
__atomic_thread_fence(memorder);
}
#ifdef __cplusplus

View File

@ -38,9 +38,9 @@ extern "C" {
#define rte_io_rmb() rte_rmb()
static __rte_always_inline void
rte_atomic_thread_fence(int memory_order)
rte_atomic_thread_fence(int memorder)
{
__atomic_thread_fence(memory_order);
__atomic_thread_fence(memorder);
}
/*------------------------ 128 bit atomic operations -------------------------*/

View File

@ -122,7 +122,7 @@ static inline void rte_io_rmb(void);
/**
* Synchronization fence between threads based on the specified memory order.
*/
static inline void rte_atomic_thread_fence(int memory_order);
static inline void rte_atomic_thread_fence(int memorder);
/*------------------------- 16 bit atomic operations -------------------------*/

View File

@ -37,9 +37,9 @@ extern "C" {
#define rte_io_rmb() rte_rmb()
static __rte_always_inline void
rte_atomic_thread_fence(int memory_order)
rte_atomic_thread_fence(int memorder)
{
__atomic_thread_fence(memory_order);
__atomic_thread_fence(memorder);
}
/*------------------------- 16 bit atomic operations -------------------------*/

View File

@ -87,12 +87,12 @@ rte_smp_mb(void)
* used instead.
*/
static __rte_always_inline void
rte_atomic_thread_fence(int memory_order)
rte_atomic_thread_fence(int memorder)
{
if (memory_order == __ATOMIC_SEQ_CST)
if (memorder == __ATOMIC_SEQ_CST)
rte_smp_mb();
else
__atomic_thread_fence(memory_order);
__atomic_thread_fence(memorder);
}
/*------------------------- 16 bit atomic operations -------------------------*/