mbox series

[v5,0/5] net/iavf: support FDIR capabiltiy

Message ID 1587449970-358397-1-git-send-email-simei.su@intel.com (mailing list archive)
Headers
Series net/iavf: support FDIR capabiltiy |

Message

Simei Su April 21, 2020, 6:19 a.m. UTC
  [PATCH v5 1/5] support FDIR common patterns and actions.
[PATCH v5 2/5] support FDIR GTPU pattern.
[PATCH v5 3/5] support FDIR L2TPv3, ESP, AH and NAT-T pattern.
[PATCH v5 4/5] support FDIR PFCP node and session pattern.
[PATCH v5 5/5] support FDIR mark action.

v5:
* Do rebase on the newest codes.

v4:
* Add to check vf->vf_res.
* Simplify some codes.
* Specify and refine some error logs.

v3:
* Add release notes.
* Update action structures based on virtchnl update.
* Add VIRTCHNL_FDIR_FAILURE_RULE_EXIST condition check and modify
  the error log.

v2:
* Update pattern and action structures based on latest virtchnl design.
* Add upper bound check for pattern layers and action numbers.
* Increase action number in mark only case.
* Consider more circumstances about PF error return status.

Simei Su (5):
  net/iavf: add support for FDIR basic rule
  net/iavf: add support for FDIR GTPU
  net/iavf: add support for FDIR L2TPv3 and IPSec
  net/iavf: add support for FDIR PFCP
  net/iavf: add support for FDIR mark action

 doc/guides/rel_notes/release_20_05.rst |   1 +
 drivers/net/iavf/Makefile              |   1 +
 drivers/net/iavf/iavf.h                |  18 +
 drivers/net/iavf/iavf_fdir.c           | 971 +++++++++++++++++++++++++++++++++
 drivers/net/iavf/iavf_vchnl.c          | 154 +++++-
 drivers/net/iavf/meson.build           |   1 +
 6 files changed, 1145 insertions(+), 1 deletion(-)
 create mode 100644 drivers/net/iavf/iavf_fdir.c
  

Comments

Xiaolong Ye April 21, 2020, 6:40 a.m. UTC | #1
On 04/21, Simei Su wrote:
>[PATCH v5 1/5] support FDIR common patterns and actions.
>[PATCH v5 2/5] support FDIR GTPU pattern.
>[PATCH v5 3/5] support FDIR L2TPv3, ESP, AH and NAT-T pattern.
>[PATCH v5 4/5] support FDIR PFCP node and session pattern.
>[PATCH v5 5/5] support FDIR mark action.
>
>v5:
>* Do rebase on the newest codes.
>
>v4:
>* Add to check vf->vf_res.
>* Simplify some codes.
>* Specify and refine some error logs.
>
>v3:
>* Add release notes.
>* Update action structures based on virtchnl update.
>* Add VIRTCHNL_FDIR_FAILURE_RULE_EXIST condition check and modify
>  the error log.
>
>v2:
>* Update pattern and action structures based on latest virtchnl design.
>* Add upper bound check for pattern layers and action numbers.
>* Increase action number in mark only case.
>* Consider more circumstances about PF error return status.
>
>Simei Su (5):
>  net/iavf: add support for FDIR basic rule
>  net/iavf: add support for FDIR GTPU
>  net/iavf: add support for FDIR L2TPv3 and IPSec
>  net/iavf: add support for FDIR PFCP
>  net/iavf: add support for FDIR mark action
>
> doc/guides/rel_notes/release_20_05.rst |   1 +
> drivers/net/iavf/Makefile              |   1 +
> drivers/net/iavf/iavf.h                |  18 +
> drivers/net/iavf/iavf_fdir.c           | 971 +++++++++++++++++++++++++++++++++
> drivers/net/iavf/iavf_vchnl.c          | 154 +++++-
> drivers/net/iavf/meson.build           |   1 +
> 6 files changed, 1145 insertions(+), 1 deletion(-)
> create mode 100644 drivers/net/iavf/iavf_fdir.c
>
>-- 
>1.8.3.1
>

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