[dpdk-dev] [PATCH] app/test: avoid freeing mbufs twice in qat test

2016-06-27 Thread Thomas Monjalon
> > Test_multi_session was freeing mbufs used in the multiple sessions created > > and setting obuf to NULL after it, but ibuf was not being set to NULL, and > > therefore, it was being freed again (ibuf and obuf are pointing at the same > > address), in the ut_teardown() function. > > > > Fixes:

[dpdk-dev] [PATCH] app/test: avoid freeing mbufs twice in qat test

2016-06-27 Thread Pablo de Lara
Test_multi_session was freeing mbufs used in the multiple sessions created and setting obuf to NULL after it, but ibuf was not being set to NULL, and therefore, it was being freed again (ibuf and obuf are pointing at the same address), in the ut_teardown() function. Fixes: 1b9cb73ecef1 ("app/test:

[dpdk-dev] [PATCH] app/test: avoid freeing mbufs twice in qat test

2016-06-27 Thread Jain, Deepak K
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Pablo de Lara > Sent: Monday, June 27, 2016 1:41 PM > To: dev at dpdk.org > Cc: De Lara Guarch, Pablo > Subject: [dpdk-dev] [PATCH] app/test: avoid freeing mbufs twice in qat test > >