diff options
author | Neale Ranns <nranns@cisco.com> | 2020-10-19 13:23:33 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-10-21 11:10:13 +0000 |
commit | 302b25a00ed913767798d58148ef4d36092ee490 (patch) | |
tree | 2bc11d23b088084a3dd6b76afc0f967f8ea81d1d /src/vnet/ipsec/ipsec.h | |
parent | 5824cc52d1a000b4c4b2ed5da2f1b7761888f0cc (diff) |
ipsec: Add to the SA info directly in the bihash
Type: improvement
this save the cache miss on the protect structure.
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: I867d5e49df5edfd6b368f17a34747f32840080e4
Diffstat (limited to 'src/vnet/ipsec/ipsec.h')
-rw-r--r-- | src/vnet/ipsec/ipsec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vnet/ipsec/ipsec.h b/src/vnet/ipsec/ipsec.h index fe44b80b321..97ef6262f71 100644 --- a/src/vnet/ipsec/ipsec.h +++ b/src/vnet/ipsec/ipsec.h @@ -26,9 +26,9 @@ #include <vnet/ipsec/ipsec_spd_policy.h> #include <vnet/ipsec/ipsec_sa.h> -#include <vppinfra/bihash_8_8.h> +#include <vppinfra/bihash_8_16.h> -#include <vppinfra/bihash_24_8.h> +#include <vppinfra/bihash_24_16.h> typedef clib_error_t *(*add_del_sa_sess_cb_t) (u32 sa_index, u8 is_add); typedef clib_error_t *(*check_support_cb_t) (ipsec_sa_t * sa); @@ -130,8 +130,8 @@ typedef struct uword *ipsec_if_real_dev_by_show_dev; uword *ipsec_if_by_sw_if_index; - clib_bihash_8_8_t tun4_protect_by_key; - clib_bihash_24_8_t tun6_protect_by_key; + clib_bihash_8_16_t tun4_protect_by_key; + clib_bihash_24_16_t tun6_protect_by_key; /* node indices */ u32 error_drop_node_index; |