aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/ip/vtep.h
diff options
context:
space:
mode:
authorRay Kinsella <mdr@ashroe.eu>2021-11-17 10:03:04 +0000
committerDamjan Marion <dmarion@me.com>2021-11-23 12:58:42 +0000
commit0a7551bef872363bd3a25129bdc91dbf2a3b1ee2 (patch)
treea4e9aecae1e83b3aaf1aa47b5aede70d05848f38 /src/vnet/ip/vtep.h
parent2dc942e8735de7e4e6bb7212e2c006190d5dcc52 (diff)
vxlan: multiarch optimization of vxlan
Fixing the mutliarch versions of vxlan, geneve and friends. Ensures that main struct is correctly sized for all multiarch permutations. Type: fix Fixes: 290526e3c Signed-off-by: Ray Kinsella <mdr@ashroe.eu> Change-Id: I7c4c435763a5dcb0c3b429cd4f361d373d480c03
Diffstat (limited to 'src/vnet/ip/vtep.h')
-rw-r--r--src/vnet/ip/vtep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ip/vtep.h b/src/vnet/ip/vtep.h
index 92e8002e55a..8b2c7fe723f 100644
--- a/src/vnet/ip/vtep.h
+++ b/src/vnet/ip/vtep.h
@@ -111,13 +111,13 @@ vtep4_check (vtep_table_t * t, vlib_buffer_t * b0, ip4_header_t * ip40,
return VTEP_CHECK_PASS;
}
-#ifdef CLIB_HAVE_VEC512
typedef struct
{
vtep4_key_t vtep4_cache[8];
int idx;
} vtep4_cache_t;
+#ifdef CLIB_HAVE_VEC512
always_inline u8
vtep4_check_vector (vtep_table_t * t, vlib_buffer_t * b0, ip4_header_t * ip40,
vtep4_key_t * last_k4, vtep4_cache_t * vtep4_u512)