Hi Thomas, On Sat, Oct 07, 2017 at 04:37:53PM +0200, Thomas Monjalon wrote: > 06/10/2017 08:45, Yuanhan Liu: > > Hi Thomas, > > > > Please consider pulling following virtio changes for 17.11-rc1 at > > git://dpdk.org/next/dpdk-next-virtio master > > There is a compilation error on ARM with > "net/virtio: rationalize setting of Rx/Tx handlers" > An include of rte_cpuflags.h is missing.
I confirm that this include is missing in virtio_ethdev.c, breaking compilation on arm (thanks for spotting it): virtio_ethdev.c: In function 'virtio_dev_configure': virtio_ethdev.c:1748:7: error: implicit declaration of function 'rte_cpu_get_flag_enabled' [-Werror=implicit-function-declaration] if (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_NEON)) { ^ Thomas, about this issue, what do you expect? I can send another patch if required. Olivier