On Tue, 19 Dec 2023 10:59:23 +0530 Anoob Joseph <ano...@marvell.com> wrote:
> 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); Also, free_pkts is using a loop and should be using rte_pktmbuf_free_bulk() instead.