Re: [dpdk-dev] [PATCH v7 01/16] distributor: fix missing handshake synchronization

2020-10-16 Thread Lukasz Wojciechowski
All suggested changes applied and published in v8. W dniu 16.10.2020 o 01:47, Honnappa Nagarahalli pisze: > > >> rte_distributor_return_pkt function which is run on worker cores must wait >> for distributor core to clear handshake on retptr64 before using those >> buffers. While the handshake is

Re: [dpdk-dev] [PATCH v7 01/16] distributor: fix missing handshake synchronization

2020-10-15 Thread Honnappa Nagarahalli
> > rte_distributor_return_pkt function which is run on worker cores must wait > for distributor core to clear handshake on retptr64 before using those > buffers. While the handshake is set distributor core controls buffers and any > operations on worker side might overwrite buffers which are un

[dpdk-dev] [PATCH v7 01/16] distributor: fix missing handshake synchronization

2020-10-10 Thread Lukasz Wojciechowski
rte_distributor_return_pkt function which is run on worker cores must wait for distributor core to clear handshake on retptr64 before using those buffers. While the handshake is set distributor core controls buffers and any operations on worker side might overwrite buffers which are unread yet. Sam