Instead of freeing directly, use commonly used function which also updates stats.
Signed-off-by: Anoob Joseph <ano...@marvell.com> --- examples/ipsec-secgw/ipsec_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ipsec-secgw/ipsec_process.c b/examples/ipsec-secgw/ipsec_process.c index b0cece3ad1..ddbe30745b 100644 --- a/examples/ipsec-secgw/ipsec_process.c +++ b/examples/ipsec-secgw/ipsec_process.c @@ -22,7 +22,7 @@ free_cops(struct rte_crypto_op *cop[], uint32_t n) uint32_t i; for (i = 0; i != n; i++) - rte_pktmbuf_free(cop[i]->sym->m_src); + free_pkts(&cop[i]->sym->m_src, 1); } /* helper routine to enqueue bulk of crypto ops */ -- 2.25.1