]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/mlx5/mlx5_rxtx_vec.c
net/mlx5: add vectorized Rx/Tx burst for ARM
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx_vec.c
index edc663815b41a765c6aab7013d7b77de02438d11..ba6c8cefdaab29fa7fddb4e7be44c7085e94135a 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