mbox series

[v6,0/3] Add AVF & DCF VLAN feaure

Message ID 20210112081302.87715-1-haiyue.wang@intel.com (mailing list archive)
Headers
Series Add AVF & DCF VLAN feaure |

Message

Wang, Haiyue Jan. 12, 2021, 8:12 a.m. UTC
  v6: code clean, and update the commit log.
v5: seperate the QinQ switch filter with another thead.
v4: make code readable for QinQ TPID setting.
v3: code refactor for handing QinQ according to the VC response.

Haiyue Wang (3):
  net/iavf: support Ethernet CRC strip disable
  net/ice: add the DCF VLAN handling
  net/iavf: implement new VLAN capability handling

 drivers/net/iavf/iavf.h                  |   6 +
 drivers/net/iavf/iavf_ethdev.c           | 120 +++++++-
 drivers/net/iavf/iavf_rxtx.c             |   6 +-
 drivers/net/iavf/iavf_vchnl.c            | 156 ++++++++++-
 drivers/net/ice/ice_dcf.c                |   1 +
 drivers/net/ice/ice_dcf_ethdev.c         |  91 +++++-
 drivers/net/ice/ice_dcf_ethdev.h         |  24 ++
 drivers/net/ice/ice_dcf_vf_representor.c | 334 +++++++++++++++++++++++
 drivers/net/ice/meson.build              |   1 +
 9 files changed, 723 insertions(+), 16 deletions(-)
 create mode 100644 drivers/net/ice/ice_dcf_vf_representor.c
  

Comments

Qi Zhang Jan. 12, 2021, 8:39 a.m. UTC | #1
> -----Original Message-----
> From: Wang, Haiyue <haiyue.wang@intel.com>
> Sent: Tuesday, January 12, 2021 4:13 PM
> To: dev@dpdk.org
> Cc: Yang, Qiming <qiming.yang@intel.com>; Wu, Jingjing
> <jingjing.wu@intel.com>; Xing, Beilei <beilei.xing@intel.com>; Zhang, Qi Z
> <qi.z.zhang@intel.com>; Fu, Qi <qi.fu@intel.com>; Wang, Haiyue
> <haiyue.wang@intel.com>
> Subject: [PATCH v6 0/3] Add AVF & DCF VLAN feaure
> 
> v6: code clean, and update the commit log.
> v5: seperate the QinQ switch filter with another thead.
> v4: make code readable for QinQ TPID setting.
> v3: code refactor for handing QinQ according to the VC response.
> 
> Haiyue Wang (3):
>   net/iavf: support Ethernet CRC strip disable
>   net/ice: add the DCF VLAN handling
>   net/iavf: implement new VLAN capability handling
> 
>  drivers/net/iavf/iavf.h                  |   6 +
>  drivers/net/iavf/iavf_ethdev.c           | 120 +++++++-
>  drivers/net/iavf/iavf_rxtx.c             |   6 +-
>  drivers/net/iavf/iavf_vchnl.c            | 156 ++++++++++-
>  drivers/net/ice/ice_dcf.c                |   1 +
>  drivers/net/ice/ice_dcf_ethdev.c         |  91 +++++-
>  drivers/net/ice/ice_dcf_ethdev.h         |  24 ++
>  drivers/net/ice/ice_dcf_vf_representor.c | 334 +++++++++++++++++++++++
>  drivers/net/ice/meson.build              |   1 +
>  9 files changed, 723 insertions(+), 16 deletions(-)  create mode 100644
> drivers/net/ice/ice_dcf_vf_representor.c
> 
> --
> 2.30.0

Acked-by: Qi Zhang <qi.z.zhang@intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi