diff options
author | Fan Zhang <roy.fan.zhang@intel.com> | 2020-09-03 17:10:57 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-09-09 10:19:21 +0000 |
commit | ef80ad6bff03e3cc35950de0e15e4821ef3f7c04 (patch) | |
tree | 1b4089175b32bf99adf99279f9e1f4d517277a52 /src/vnet/crypto/crypto.c | |
parent | c4665093cdb0a8122d9640b6f5b3acd627918f32 (diff) |
crypto: change cryptodev with new cryptodev API
Type: feature
This patch updateds cryptodev engine uses new DPDK Cryptodev
API planned to be upstreamed in DPDK 20.11.
Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Signed-off-by: Piotr Bronowski <piotrX.bronowski@intel.com>
Change-Id: I8dd1a8ac643f1e952deb787e466b76ea7aa5f420
Diffstat (limited to 'src/vnet/crypto/crypto.c')
-rw-r--r-- | src/vnet/crypto/crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/crypto/crypto.c b/src/vnet/crypto/crypto.c index a82ebae4313..26fc4940e0a 100644 --- a/src/vnet/crypto/crypto.c +++ b/src/vnet/crypto/crypto.c @@ -710,7 +710,7 @@ vnet_crypto_init (vlib_main_t * vm) cm->async_alg_index_by_name = hash_create_string (0, sizeof (uword)); vec_validate_aligned (cm->threads, tm->n_vlib_mains, CLIB_CACHE_LINE_BYTES); vec_foreach (ct, cm->threads) - pool_alloc_aligned (ct->frame_pool, 256, CLIB_CACHE_LINE_BYTES); + pool_alloc_aligned (ct->frame_pool, 1024, CLIB_CACHE_LINE_BYTES); vec_validate (cm->algs, VNET_CRYPTO_N_ALGS); vec_validate (cm->async_algs, VNET_CRYPTO_N_ASYNC_ALGS); clib_bitmap_validate (cm->async_active_ids, VNET_CRYPTO_ASYNC_OP_N_IDS - 1); |