From 33e81950cf937ab081c7c591f06e8871b0f00e93 Mon Sep 17 00:00:00 2001 From: Christophe Fontaine Date: Mon, 19 Dec 2016 14:41:52 +0100 Subject: aarch64 compatibility - lb plugin: compatibility for non x86 platforms. - Add vector_neon.h to support simd instructions, especially 'u16x8_zero_byte_mask' used in "vnet/vnet/ip/ip4_source_and_port_range_check.c" Change-Id: I395546b0e2d5748e73daffa51269a200ef8d1235 Signed-off-by: Christophe Fontaine --- vlib/vlib/buffer.h | 2 +- vlib/vlib/node.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'vlib') diff --git a/vlib/vlib/buffer.h b/vlib/vlib/buffer.h index 4ede684aa4b..5f1e62f08c9 100644 --- a/vlib/vlib/buffer.h +++ b/vlib/vlib/buffer.h @@ -56,7 +56,7 @@ #define VLIB_BUFFER_PRE_DATA_SIZE __PRE_DATA_SIZE #endif -#ifdef CLIB_HAVE_VEC128 +#if defined (CLIB_HAVE_VEC128) || defined (__aarch64__) typedef u8x16 vlib_copy_unit_t; #else typedef u64 vlib_copy_unit_t; diff --git a/vlib/vlib/node.c b/vlib/vlib/node.c index 23f7ea0239e..c419a13a487 100644 --- a/vlib/vlib/node.c +++ b/vlib/vlib/node.c @@ -433,9 +433,9 @@ register_node (vlib_main_t * vm, vlib_node_registration_t * r) for (i = 0; i < vec_len (rt->errors); i++) rt->errors[i] = vlib_error_set (n->index, i); - STATIC_ASSERT (sizeof (vlib_node_runtime_t) == 2 * CLIB_CACHE_LINE_BYTES, - "Size of vlib_node_runtime_t must be equal to 2 cachelines"); - ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) - + STATIC_ASSERT_SIZEOF (vlib_node_runtime_t, 128); + ASSERT (vec_len (n->runtime_data) <= + sizeof (vlib_node_runtime_t) - STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data)); if (vec_len (n->runtime_data) > 0) -- cgit 1.2.3-korg