[v3,0/4] add support of MARK and RSS flow action

Message ID 20240226014500.3537561-1-chaoyong.he@corigine.com (mailing list archive)
Headers
Series add support of MARK and RSS flow action |

Message

Chaoyong He Feb. 26, 2024, 1:44 a.m. UTC
  This patch series add the support of MARK and RSS flow action for NFP
PMD, also add a new function to help check if a device is representor
port.

---
v2:
* Modify the title and description of patch series to make it more
 clear.
* Add a new function to ethdev library, PMDs can use it to check if a
* device is representor port.
v3:
* Drop the update of release notes.
* Replace two more instance in 'rte_class_eth.c' with the new add helper
 function.
---

Long Wu (4):
  ethdev: add function to check representor port
  net/nfp: support MARK flow action
  net/nfp: add representor RSS configuration
  net/nfp: support RSS flow action

 doc/guides/nics/features/nfp.ini              |   1 +
 drivers/common/nfp/nfp_common_ctrl.h          |   1 +
 drivers/net/bnxt/bnxt.h                       |   3 -
 drivers/net/bnxt/bnxt_ethdev.c                |   4 +-
 drivers/net/bnxt/tf_ulp/bnxt_tf_pmd_shim.c    |  12 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c            |   4 +-
 drivers/net/bnxt/tf_ulp/ulp_def_rules.c       |   4 +-
 drivers/net/cpfl/cpfl_representor.c           |   2 +-
 drivers/net/enic/enic.h                       |   5 -
 drivers/net/enic/enic_ethdev.c                |   2 +-
 drivers/net/enic/enic_fm_flow.c               |  20 +--
 drivers/net/enic/enic_main.c                  |   4 +-
 drivers/net/i40e/i40e_ethdev.c                |   2 +-
 drivers/net/ice/ice_dcf_ethdev.c              |   2 +-
 drivers/net/ixgbe/ixgbe_ethdev.c              |   2 +-
 drivers/net/nfp/flower/nfp_flower.c           |  12 +-
 drivers/net/nfp/flower/nfp_flower_cmsg.h      |  16 ++
 drivers/net/nfp/flower/nfp_flower_flow.c      | 153 +++++++++++++++++-
 drivers/net/nfp/flower/nfp_flower_flow.h      |   8 +
 .../net/nfp/flower/nfp_flower_representor.c   |  19 +++
 .../net/nfp/flower/nfp_flower_representor.h   |   1 +
 drivers/net/nfp/nfp_mtr.c                     |   2 +-
 drivers/net/nfp/nfp_net_common.c              |  21 +--
 drivers/net/nfp/nfp_net_common.h              |   9 ++
 drivers/net/nfp/nfp_net_flow.c                |   2 +-
 lib/ethdev/ethdev_driver.h                    |  17 ++
 lib/ethdev/rte_class_eth.c                    |   4 +-
 27 files changed, 275 insertions(+), 57 deletions(-)
  

Comments

Ferruh Yigit Feb. 26, 2024, 2:31 p.m. UTC | #1
On 2/26/2024 1:44 AM, Chaoyong He wrote:
> This patch series add the support of MARK and RSS flow action for NFP
> PMD, also add a new function to help check if a device is representor
> port.
> 
> ---
> v2:
> * Modify the title and description of patch series to make it more
>  clear.
> * Add a new function to ethdev library, PMDs can use it to check if a
> * device is representor port.
> v3:
> * Drop the update of release notes.
> * Replace two more instance in 'rte_class_eth.c' with the new add helper
>  function.
> ---
> 
> Long Wu (4):
>   ethdev: add function to check representor port
>   net/nfp: support MARK flow action
>   net/nfp: add representor RSS configuration
>   net/nfp: support RSS flow action
> 

Series applied to dpdk-next-net/main, thanks.