Re: [dpdk-dev] [PATCH v1 1/6] app/test: fix deadlock in distributor test

2020-09-17 Thread Lukasz Wojciechowski
Hi David, W dniu 17.09.2020 o 13:21, David Hunt pisze: > Hi Lukasz, > > On 15/9/2020 8:34 PM, Lukasz Wojciechowski wrote: >> The sanity test with worker shutdown delegates all bufs >> to be processed by a single lcore worker, then it freezes >> one of the lcore workers and continues to send more b

Re: [dpdk-dev] [PATCH v1 1/6] app/test: fix deadlock in distributor test

2020-09-17 Thread David Hunt
Hi Lukasz, On 15/9/2020 8:34 PM, Lukasz Wojciechowski wrote: The sanity test with worker shutdown delegates all bufs to be processed by a single lcore worker, then it freezes one of the lcore workers and continues to send more bufs. Problem occurred if freezed lcore is the same as the one that

[dpdk-dev] [PATCH v1 1/6] app/test: fix deadlock in distributor test

2020-09-15 Thread Lukasz Wojciechowski
The sanity test with worker shutdown delegates all bufs to be processed by a single lcore worker, then it freezes one of the lcore workers and continues to send more bufs. Problem occurred if freezed lcore is the same as the one that is processing the mbufs. The lcore processing mbufs might be dif