diff options
author | Damjan Marion <damarion@cisco.com> | 2021-04-20 21:28:45 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-04-21 15:24:05 +0000 |
commit | 09aeee64da0609d027fd7d55525c8f080cbede8e (patch) | |
tree | 87681574ab4d6b7ee34e93ac65614c92bcd63acc /src/vnet | |
parent | 832926bd9666717ff2310f93981f3383e1de5ab6 (diff) |
vppinfra: more avx512 inlines (compress, expand, from, is_equal_mask)
Type: improvement
Change-Id: I4cb86cafba92ae70cea160b9bf45f28a916ab6db
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ip/vtep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ip/vtep.h b/src/vnet/ip/vtep.h index 418d8439744..92e8002e55a 100644 --- a/src/vnet/ip/vtep.h +++ b/src/vnet/ip/vtep.h @@ -131,7 +131,7 @@ vtep4_check_vector (vtep_table_t * t, vlib_buffer_t * b0, ip4_header_t * ip40, u64x8 k4_u64x8 = u64x8_splat (k4.as_u64); u64x8 cache = u64x8_load_unaligned (vtep4_u512->vtep4_cache); - u8 result = u64x8_mask_is_equal (cache, k4_u64x8); + u8 result = u64x8_is_equal_mask (cache, k4_u64x8); if (PREDICT_TRUE (result != 0)) { last_k4->as_u64 = |