RE: [PATCH v1] examples/ipsec-secgw: free the actual mbuf pointer

2024-10-09 Thread Akhil Goyal
> Subject: [PATCH v1] examples/ipsec-secgw: free the actual mbuf pointer > > In case of crypto event vector, the vector points to crypto op structure > in priv area and not actual mbuf. > Extract the mbuf pointer and pass these to rte_mbuf_free to free the > mbufs. > > Si

RE: [PATCH v1] examples/ipsec-secgw: free the actual mbuf pointer

2024-08-21 Thread Anoob Joseph
> Subject: [PATCH v1] examples/ipsec-secgw: free the actual mbuf pointer > > In case of crypto event vector, the vector points to crypto op structure in > priv area > and not actual mbuf. > Extract the mbuf pointer and pass these to rte_mbuf_free to free the mbufs. > &

[PATCH v1] examples/ipsec-secgw: free the actual mbuf pointer

2024-08-16 Thread Vidya Sagar Velumuri
In case of crypto event vector, the vector points to crypto op structure in priv area and not actual mbuf. Extract the mbuf pointer and pass these to rte_mbuf_free to free the mbufs. Signed-off-by: Vidya Sagar Velumuri diff --git a/examples/ipsec-secgw/ipsec_worker.c b/examples/ipsec-secgw/ipse