Re: [dpdk-dev] [PATCH v4 1/8] test/distributor: fix deadlock with freezed worker

2020-09-30 Thread Lukasz Wojciechowski
Hi Honnappa, Thank you very much for your review Reply inline below W dniu 28.09.2020 o 01:34, Honnappa Nagarahalli pisze: > Hi Lukasz, > Few comments inline > > > >> The sanity test with worker shutdown delegates all bufs to be processed by a >> single lcore worker, then it freezes one of

Re: [dpdk-dev] [PATCH v4 1/8] test/distributor: fix deadlock with freezed worker

2020-09-27 Thread Honnappa Nagarahalli
Hi Lukasz, Few comments inline > > 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. The designated core to freeze (core with id == 0 in the existing code) gets

[dpdk-dev] [PATCH v4 1/8] test/distributor: fix deadlock with freezed worker

2020-09-25 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