eal: fix auxv open check for ARM and PPC
authorLukasz Majczak <lma@semihalf.com>
Thu, 28 Sep 2017 06:54:59 +0000 (08:54 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 5 Oct 2017 22:15:43 +0000 (00:15 +0200)
commit1e0a17ac4c816fc41f6cf8c1fcd56149d8927263
tree838d193566340da717f0b31d52674515461088c7
parent016c32bd3e3dfeeb9db52017ffd13c1f97ce92bf
eal: fix auxv open check for ARM and PPC

The assertion of return value from the open() function is done against
0, while it is a correct value - open() returns -1 in case of an error.
It causes problems while trying to run as a daemon, in which case, this
call to open() will return 0 as a valid descriptor.

Fixes: b94e5c9406b5 ("eal/arm: add CPU flags for ARMv7")
Fixes: 97523f822ba9 ("eal/arm: add CPU flags for ARMv8")
Fixes: 9ae155385686 ("eal/ppc: cpu flag checks for IBM Power")
Cc: stable@dpdk.org
Signed-off-by: Lukasz Majczak <lma@semihalf.com>
Acked-by: Jan Viktorin <viktorin@rehivetech.com>
Acked-by: Chao Zhu <chaozhu@linux.vnet.ibm.com>
lib/librte_eal/common/arch/arm/rte_cpuflags.c
lib/librte_eal/common/arch/ppc_64/rte_cpuflags.c