Re: [PATCH v2 1/1] app/test: resolve mbuf_test application failure

2023-10-17 Thread Olivier Matz
> Sent: Wednesday, July 26, 2023 11:25 AM > > To: Olivier Matz > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin > > Kumar Dabilpuram ; Rakesh Kudurumalla > > > > Subject: [PATCH v2 1/1] app/test: resolve mbuf_test application failure app/test: fix extern

RE: [PATCH v2 1/1] app/test: resolve mbuf_test application failure

2023-10-02 Thread Rakesh Kudurumalla
Rakesh Kudurumalla > > Subject: [PATCH v2 1/1] app/test: resolve mbuf_test application failure > > when RTE_ENABLE_ASSERT is defined test_mbuf application is failing > because we are trying to attach extbuf to a cloned buffer to which external > mbuf is already attached.To ma

[PATCH v2 1/1] app/test: resolve mbuf_test application failure

2023-07-25 Thread Rakesh Kudurumalla
when RTE_ENABLE_ASSERT is defined test_mbuf application is failing because we are trying to attach extbuf to a cloned buffer to which external mbuf is already attached.To make test_mbuf pass CI we have updated ol_flags. This patch fixes the same. Signed-off-by: Rakesh Kudurumalla --- v2 : Address