mbox series

[v4,00/13] add switch filter support for intel DCF

Message ID 20200403044609.27512-1-wei.zhao1@intel.com (mailing list archive)
Headers
Series add switch filter support for intel DCF |

Message

Zhao1, Wei April 3, 2020, 4:45 a.m. UTC
  A DCF (Device Config Function) framework has been add for intel device,
this patch set add add switch filter support for it, this set also fix
bugs which block this feature.

This patchset is based on:
[1] https://patchwork.dpdk.org/cover/66480/ : add Intel DCF PMD support

Depends-on: series-8859

v2:
-add switch filter support for AH/ESP/PFCP packet
-fix some patch check warning
-add flow redirect on switch patch

v3:
-update commit log
-update in redirect on switch patch

v4:
-update as comment

Beilei Xing (2):
  net/ice: enable flow redirect on switch
  net/ice: redirect switch rule to new VSI

Wei Zhao (11):
  net/ice: enable switch flow on DCF
  net/ice: support for more PPPoE input set
  net/ice: change swicth parser to support flexible mask
  net/ice: add support for MAC VLAN rule
  net/ice: change default tunnle type
  net/ice: add action number check for swicth
  net/ice: add support for ESP/AH/L2TP
  net/ice: add support for PFCP
  net/ice: add support for IPv6 NAT-T
  net/ice: add more flow support for permission stage
  net/ice: fix input set of VLAN item

 doc/guides/rel_notes/release_20_05.rst |   2 +-
 drivers/net/ice/ice_dcf_ethdev.c       |  10 +-
 drivers/net/ice/ice_dcf_parent.c       |  30 +-
 drivers/net/ice/ice_fdir_filter.c      |   6 +
 drivers/net/ice/ice_generic_flow.c     |  61 +++
 drivers/net/ice/ice_generic_flow.h     |  24 +
 drivers/net/ice/ice_hash.c             |   6 +
 drivers/net/ice/ice_switch_filter.c    | 730 +++++++++++++++++++------
 8 files changed, 682 insertions(+), 187 deletions(-)
  

Comments

Qi Zhang April 3, 2020, 5:09 a.m. UTC | #1
> -----Original Message-----
> From: Zhao1, Wei <wei.zhao1@intel.com>
> Sent: Friday, April 3, 2020 12:46 PM
> To: dev@dpdk.org
> Cc: Zhang, Qi Z <qi.z.zhang@intel.com>; Lu, Nannan <nannan.lu@intel.com>;
> Fu, Qi <qi.fu@intel.com>; Peng, Yuan <yuan.peng@intel.com>
> Subject: [PATCH v4 00/13] add switch filter support for intel DCF
> 
> A DCF (Device Config Function) framework has been add for intel device, this
> patch set add add switch filter support for it, this set also fix bugs which block
> this feature.
> 
> This patchset is based on:
> [1] https://patchwork.dpdk.org/cover/66480/ : add Intel DCF PMD support
> 
> Depends-on: series-8859
> 
> v2:
> -add switch filter support for AH/ESP/PFCP packet -fix some patch check
> warning -add flow redirect on switch patch
> 
> v3:
> -update commit log
> -update in redirect on switch patch
> 
> v4:
> -update as comment
> 
> Beilei Xing (2):
>   net/ice: enable flow redirect on switch
>   net/ice: redirect switch rule to new VSI
> 
> Wei Zhao (11):
>   net/ice: enable switch flow on DCF
>   net/ice: support for more PPPoE input set
>   net/ice: change swicth parser to support flexible mask
>   net/ice: add support for MAC VLAN rule
>   net/ice: change default tunnle type
>   net/ice: add action number check for swicth
>   net/ice: add support for ESP/AH/L2TP
>   net/ice: add support for PFCP
>   net/ice: add support for IPv6 NAT-T
>   net/ice: add more flow support for permission stage
>   net/ice: fix input set of VLAN item
> 
>  doc/guides/rel_notes/release_20_05.rst |   2 +-
>  drivers/net/ice/ice_dcf_ethdev.c       |  10 +-
>  drivers/net/ice/ice_dcf_parent.c       |  30 +-
>  drivers/net/ice/ice_fdir_filter.c      |   6 +
>  drivers/net/ice/ice_generic_flow.c     |  61 +++
>  drivers/net/ice/ice_generic_flow.h     |  24 +
>  drivers/net/ice/ice_hash.c             |   6 +
>  drivers/net/ice/ice_switch_filter.c    | 730 +++++++++++++++++++------
>  8 files changed, 682 insertions(+), 187 deletions(-)
> 
> --
> 2.19.1

Acked-by: Qi Zhang <qi.z.zhang@intel.com>
  
Xiaolong Ye April 4, 2020, 6:17 a.m. UTC | #2
On 04/03, Zhang, Qi Z wrote:
>
>
>> -----Original Message-----
>> From: Zhao1, Wei <wei.zhao1@intel.com>
>> Sent: Friday, April 3, 2020 12:46 PM
>> To: dev@dpdk.org
>> Cc: Zhang, Qi Z <qi.z.zhang@intel.com>; Lu, Nannan <nannan.lu@intel.com>;
>> Fu, Qi <qi.fu@intel.com>; Peng, Yuan <yuan.peng@intel.com>
>> Subject: [PATCH v4 00/13] add switch filter support for intel DCF
>> 
>> A DCF (Device Config Function) framework has been add for intel device, this
>> patch set add add switch filter support for it, this set also fix bugs which block
>> this feature.
>> 
>> This patchset is based on:
>> [1] https://patchwork.dpdk.org/cover/66480/ : add Intel DCF PMD support
>> 
>> Depends-on: series-8859
>> 
>> v2:
>> -add switch filter support for AH/ESP/PFCP packet -fix some patch check
>> warning -add flow redirect on switch patch
>> 
>> v3:
>> -update commit log
>> -update in redirect on switch patch
>> 
>> v4:
>> -update as comment
>> 
>> Beilei Xing (2):
>>   net/ice: enable flow redirect on switch
>>   net/ice: redirect switch rule to new VSI
>> 
>> Wei Zhao (11):
>>   net/ice: enable switch flow on DCF
>>   net/ice: support for more PPPoE input set
>>   net/ice: change swicth parser to support flexible mask
>>   net/ice: add support for MAC VLAN rule
>>   net/ice: change default tunnle type
>>   net/ice: add action number check for swicth
>>   net/ice: add support for ESP/AH/L2TP
>>   net/ice: add support for PFCP
>>   net/ice: add support for IPv6 NAT-T
>>   net/ice: add more flow support for permission stage
>>   net/ice: fix input set of VLAN item
>> 
>>  doc/guides/rel_notes/release_20_05.rst |   2 +-
>>  drivers/net/ice/ice_dcf_ethdev.c       |  10 +-
>>  drivers/net/ice/ice_dcf_parent.c       |  30 +-
>>  drivers/net/ice/ice_fdir_filter.c      |   6 +
>>  drivers/net/ice/ice_generic_flow.c     |  61 +++
>>  drivers/net/ice/ice_generic_flow.h     |  24 +
>>  drivers/net/ice/ice_hash.c             |   6 +
>>  drivers/net/ice/ice_switch_filter.c    | 730 +++++++++++++++++++------
>>  8 files changed, 682 insertions(+), 187 deletions(-)
>> 
>> --
>> 2.19.1
>
>Acked-by: Qi Zhang <qi.z.zhang@intel.com>
>

Applied to dpdk-next-net-intel, Thanks.