mbox series

[v2,0/2] ethdev: RSS expand code fix and relocate

Message ID cover.1600958661.git.dekelp@nvidia.com (mailing list archive)
Headers
Series ethdev: RSS expand code fix and relocate |

Message

Dekel Peled Sept. 24, 2020, 2:52 p.m. UTC
  Patch [1] added support for RSS flow expansion.
It was added in ethdev for public use, but until now it is used only
by MLX5 PMD.
This patch series fixes an issue in this code, removes it from ethdev
and moves it to MLX5 PMD file (following maintainer comments on v1).

[1] commit 4ed05fcd441b ("ethdev: add flow API to expand RSS flows")

---
v2: relocate code from ethdev to MLX5 PMD
---

Dekel Peled (2):
  ethdev: fix RSS flow expansion in case of mismatch
  ethdev: move RSS expand code from ethdev to MLX5 PMD

 drivers/net/mlx5/mlx5_flow.c             | 415 +++++++++++++++++++++++++++----
 lib/librte_ethdev/rte_ethdev_version.map |   1 -
 lib/librte_ethdev/rte_flow.c             | 262 -------------------
 lib/librte_ethdev/rte_flow_driver.h      |  62 -----
 4 files changed, 370 insertions(+), 370 deletions(-)
  

Comments

Ferruh Yigit Oct. 5, 2020, 5:13 p.m. UTC | #1
On 9/24/2020 3:52 PM, Dekel Peled wrote:
> Patch [1] added support for RSS flow expansion.
> It was added in ethdev for public use, but until now it is used only
> by MLX5 PMD.
> This patch series fixes an issue in this code, removes it from ethdev
> and moves it to MLX5 PMD file (following maintainer comments on v1).
> 
> [1] commit 4ed05fcd441b ("ethdev: add flow API to expand RSS flows")
> 
> ---
> v2: relocate code from ethdev to MLX5 PMD
> ---
> 
> Dekel Peled (2):
>    ethdev: fix RSS flow expansion in case of mismatch
>    ethdev: move RSS expand code from ethdev to MLX5 PMD
> 

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