net/mlx5: add vectorized Rx/Tx burst for ARM
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx_vec.c
index edc6638..ba6c8ce 100644 (file)
 #include "mlx5_defs.h"
 #include "mlx5_prm.h"
 
-#ifdef RTE_ARCH_X86_64
+#if defined RTE_ARCH_X86_64
 #include "mlx5_rxtx_vec_sse.h"
+#elif defined RTE_ARCH_ARM64
+#include "mlx5_rxtx_vec_neon.h"
 #else
 #error "This should not be compiled if SIMD instructions are not supported."
 #endif