[dpdk-dev] [PATCH v2 13/13] net/enic: fix several issues with inner packet matching

2019-03-02 Thread Hyong Youb Kim
Inner packet matching is currently buggy in many cases. 1. Mishandling null spec ("match any"). The copy_item functions do nothing if spec is null. This is incorrect, as all patterns should be appended to the L5 pattern buffer even for null spec (treated as all zeros). 2. Accessing null spec caus

Re: [dpdk-dev] [PATCH v2 13/13] net/enic: fix several issues with inner packet matching

2019-04-10 Thread Kevin Traynor
On 04/03/2019 16:58, Ferruh Yigit wrote: > On 3/2/2019 10:42 AM, Hyong Youb Kim wrote: >> Inner packet matching is currently buggy in many cases. >> >> 1. Mishandling null spec ("match any"). >> The copy_item functions do nothing if spec is null. This is incorrect, >> as all patterns should be appe

Re: [dpdk-dev] [PATCH v2 13/13] net/enic: fix several issues with inner packet matching

2019-03-04 Thread Ferruh Yigit
On 3/2/2019 10:42 AM, Hyong Youb Kim wrote: > Inner packet matching is currently buggy in many cases. > > 1. Mishandling null spec ("match any"). > The copy_item functions do nothing if spec is null. This is incorrect, > as all patterns should be appended to the L5 pattern buffer even for > null s