From 83ea3b5fa09152da5033f64164f7487296f21f64 Mon Sep 17 00:00:00 2001 From: Ruifeng Wang Date: Fri, 5 Jun 2020 13:20:55 +0800 Subject: [PATCH] net/i40e: enable NEON Rx/Tx in meson The i40e neon vector implementation is not compiled with meson. Add the file to meson for Arm platform. Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson") Cc: stable@dpdk.org Reported-by: David Marchand Signed-off-by: Ruifeng Wang Reviewed-by: Honnappa Nagarahalli Reviewed-by: Phil Yang Acked-by: Bruce Richardson --- drivers/net/i40e/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/i40e/meson.build b/drivers/net/i40e/meson.build index c452420ee5..211d45d886 100644 --- a/drivers/net/i40e/meson.build +++ b/drivers/net/i40e/meson.build @@ -47,6 +47,9 @@ if arch_subdir == 'x86' elif arch_subdir == 'ppc' dpdk_conf.set('RTE_LIBRTE_I40E_INC_VECTOR', 1) sources += files('i40e_rxtx_vec_altivec.c') +elif arch_subdir == 'arm' + dpdk_conf.set('RTE_LIBRTE_I40E_INC_VECTOR', 1) + sources += files('i40e_rxtx_vec_neon.c') endif install_headers('rte_pmd_i40e.h') -- 2.20.1