Re: [dpdk-dev] [PATCH v2] net/enic: fix hardcoding of some flow director masks

2017-02-09 Thread Ferruh Yigit
On 2/9/2017 5:43 PM, John Daley (johndale) wrote: > > >> -Original Message- >> From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] >> Sent: Thursday, February 09, 2017 2:16 AM >> To: John Daley (johndale) >> Cc: dev@dpdk.org; sta...@dpdk.org >> Subject: Re: [PATCH v2] net/enic: fix hardco

Re: [dpdk-dev] [PATCH v2] net/enic: fix hardcoding of some flow director masks

2017-02-09 Thread John Daley (johndale)
> -Original Message- > From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] > Sent: Thursday, February 09, 2017 2:16 AM > To: John Daley (johndale) > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: Re: [PATCH v2] net/enic: fix hardcoding of some flow director masks > > On 2/9/2017 12:40 AM,

Re: [dpdk-dev] [PATCH v2] net/enic: fix hardcoding of some flow director masks

2017-02-09 Thread Ferruh Yigit
On 2/9/2017 12:40 AM, John Daley wrote: > Hard coded mask values were being used for several of the IPv4 and IPv6 > fields. Use the values in the rte_eth_fdir_masks structure provided by the > caller. > > Fixes: dfbd6a9cb504 ("net/enic: extend flow director support for 1300 > series") > Cc: sta.

Re: [dpdk-dev] [PATCH v2] net/enic: fix hardcoding of some flow director masks

2017-02-09 Thread Ferruh Yigit
On 2/9/2017 12:40 AM, John Daley wrote: > Hard coded mask values were being used for several of the IPv4 and IPv6 > fields. Use the values in the rte_eth_fdir_masks structure provided by the > caller. > > Fixes: dfbd6a9cb504 ("net/enic: extend flow director support for 1300 series") > > Cc: sta..

[dpdk-dev] [PATCH v2] net/enic: fix hardcoding of some flow director masks

2017-02-08 Thread John Daley
Hard coded mask values were being used for several of the IPv4 and IPv6 fields. Use the values in the rte_eth_fdir_masks structure provided by the caller. Fixes: dfbd6a9cb504 ("net/enic: extend flow director support for 1300 series") Cc: sta...@dpdk.org Signed-off-by: John Daley --- v2: fix co