diff options
author | Kingwel Xie <kingwel.xie@ericsson.com> | 2019-02-13 02:48:41 -0500 |
---|---|---|
committer | Sergio Gonzalez Monroy <sergio.gonzalez.monroy@outlook.com> | 2019-02-15 14:58:33 +0000 |
commit | 3b3464eef5914d33e0925d6c2122c08b18c904f7 (patch) | |
tree | 4e1a319969cdd45c75d1f656998bdd269e887593 /src/plugins/dpdk/ipsec/ipsec.h | |
parent | f620f665ad27e2b6c9d3999ddbb134414d8d076e (diff) |
dpdk-ipsec: store buffer index into crypto-op private
don't have to convert from mbuf to vlib_buffer then buffer index
save a few clock cycles in crypto-input
plus, a bit improvements of CLI
1. show more information, resource placement & qp stats
2. clear dpdk qp statistics
cleanup cli as sugguested by Sergio Gonzalez Monroy
Change-Id: Ic4fd65bfa9a6b05b344a9a40c554990dde072d19
Signed-off-by: Kingwel Xie <kingwel.xie@ericsson.com>
Diffstat (limited to 'src/plugins/dpdk/ipsec/ipsec.h')
-rw-r--r-- | src/plugins/dpdk/ipsec/ipsec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/dpdk/ipsec/ipsec.h b/src/plugins/dpdk/ipsec/ipsec.h index ac2b9b875a1..4866142630b 100644 --- a/src/plugins/dpdk/ipsec/ipsec.h +++ b/src/plugins/dpdk/ipsec/ipsec.h @@ -58,6 +58,7 @@ typedef struct typedef struct { u32 next; + u32 bi; dpdk_gcm_cnt_blk cb __attribute__ ((aligned (16))); u8 aad[16]; u8 icv[32]; |