eal: fix pedantic build of mlx4 debug mode
authorAdrien Mazarguil <adrien.mazarguil@6wind.com>
Mon, 29 Jun 2015 09:34:52 +0000 (11:34 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 29 Jun 2015 12:09:06 +0000 (14:09 +0200)
commitc0362128c57a0ad22ea311a9657bb15a44b70793
tree13c5c758fef1af94c444e34b367557ff05cd6d4e
parent3379b158b2a1ad4b40325630d49144f240711dea
eal: fix pedantic build of mlx4 debug mode

Since the commit below includes rte_cpuflags.h in rte_spinlock.h,
compilation of the mlx4 driver fails when CONFIG_RTE_LIBRTE_MLX4_DEBUG=y.

This mode adds -pedantic to the compiler's command line for mlx4, which
complains about the static definition of an empty cpu_feature_table[] in
common rte_cpuflags.h, then about its redefinition as a larger array in
arch-specific rte_cpuflags.h.

While DPDK does not officially support -pedantic internally, external
applications may enable it and include rte_spinlock.h from the public API.

Instead of removing -pedantic from mlx4, this commit fixes rte_cpuflags.h.

Fixes: ba7468997ea6 ("spinlock: add HTM lock elision for x86")

Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: David Marchand <david.marchand@6wind.com>
lib/librte_eal/common/include/generic/rte_cpuflags.h