Re: [dpdk-dev] [PATCH v5 12/15] distributor: fix scalar matching

2020-10-09 Thread Lukasz Wojciechowski
W dniu 09.10.2020 o 14:35, David Hunt pisze: > Hi Lukasz, > > On 9/10/2020 1:31 PM, David Hunt wrote: >> >> On 8/10/2020 6:23 AM, Lukasz Wojciechowski wrote: >>> Fix improper indexes while comparing tags. >>> In the find_match_scalar() function: >>> * j iterates over flow tags of following packet

Re: [dpdk-dev] [PATCH v5 12/15] distributor: fix scalar matching

2020-10-09 Thread David Hunt
Hi Lukasz, On 9/10/2020 1:31 PM, David Hunt wrote: On 8/10/2020 6:23 AM, Lukasz Wojciechowski wrote: Fix improper indexes while comparing tags. In the find_match_scalar() function: * j iterates over flow tags of following packets; * w iterates over backlog or in flight tags positions. Fixes:

Re: [dpdk-dev] [PATCH v5 12/15] distributor: fix scalar matching

2020-10-09 Thread David Hunt
On 8/10/2020 6:23 AM, Lukasz Wojciechowski wrote: Fix improper indexes while comparing tags. In the find_match_scalar() function: * j iterates over flow tags of following packets; * w iterates over backlog or in flight tags positions. Fixes: 775003ad2f96 ("distributor: add new burst-capable li

[dpdk-dev] [PATCH v5 12/15] distributor: fix scalar matching

2020-10-07 Thread Lukasz Wojciechowski
Fix improper indexes while comparing tags. In the find_match_scalar() function: * j iterates over flow tags of following packets; * w iterates over backlog or in flight tags positions. Fixes: 775003ad2f96 ("distributor: add new burst-capable library") Cc: david.h...@intel.com Cc: sta...@dpdk.org