mbox series

[v8,0/3] net/ice: enable advanced RSS

Message ID 1571659612-46066-1-git-send-email-simei.su@intel.com (mailing list archive)
Headers
Series net/ice: enable advanced RSS |

Message

Simei Su Oct. 21, 2019, 12:06 p.m. UTC
  [PATCH v8 1/2] add teid hash for gtupu and session id hash for pppoe/pppod.
[PATCH v8 2/2] support input set change and symmetric hash by rte_flow RSS action.

v8:
* Change meta type from uint64_t to void pointer for pattern structure.
* Modify related code in ice_hash.c about above change.

v7:
* Rebase patches to solve merge conflict.

v6:
* Add simultaneous use of SRC_ONLY and DST_ONLY of the same level.
* Update cases in ice_hash_type_list[].

v5:
* Update title for cover letter and commit log.
* Fix some code style.

v4:
* Add rss support for gtpu with teid and pppoe/pppod with session id.
* Split up into patchset.

v3:
* Modify codes according to the comments.
* Update release notes and Makefile/meson.build.

v2:
* Amend to resend patch that v1 is not in community.

Simei Su (3):
  net/ice: add RSS configuration for gtpu/pppoe
  net/ice: change one member type of the pattern structure
  net/ice: enable advanced RSS

 doc/guides/rel_notes/release_19_11.rst |   1 +
 drivers/net/ice/Makefile               |   1 +
 drivers/net/ice/ice_ethdev.c           |  24 ++
 drivers/net/ice/ice_generic_flow.h     |   2 +-
 drivers/net/ice/ice_hash.c             | 562 +++++++++++++++++++++++++++++++++
 drivers/net/ice/meson.build            |   3 +-
 6 files changed, 591 insertions(+), 2 deletions(-)
 create mode 100644 drivers/net/ice/ice_hash.c
  

Comments

Xiaolong Ye Oct. 21, 2019, 2:24 p.m. UTC | #1
On 10/21, Simei Su wrote:
>[PATCH v8 1/2] add teid hash for gtupu and session id hash for pppoe/pppod.
>[PATCH v8 2/2] support input set change and symmetric hash by rte_flow RSS action.
>
>v8:
>* Change meta type from uint64_t to void pointer for pattern structure.
>* Modify related code in ice_hash.c about above change.
>
>v7:
>* Rebase patches to solve merge conflict.
>
>v6:
>* Add simultaneous use of SRC_ONLY and DST_ONLY of the same level.
>* Update cases in ice_hash_type_list[].
>
>v5:
>* Update title for cover letter and commit log.
>* Fix some code style.
>
>v4:
>* Add rss support for gtpu with teid and pppoe/pppod with session id.
>* Split up into patchset.
>
>v3:
>* Modify codes according to the comments.
>* Update release notes and Makefile/meson.build.
>
>v2:
>* Amend to resend patch that v1 is not in community.
>
>Simei Su (3):
>  net/ice: add RSS configuration for gtpu/pppoe
>  net/ice: change one member type of the pattern structure
>  net/ice: enable advanced RSS
>
> doc/guides/rel_notes/release_19_11.rst |   1 +
> drivers/net/ice/Makefile               |   1 +
> drivers/net/ice/ice_ethdev.c           |  24 ++
> drivers/net/ice/ice_generic_flow.h     |   2 +-
> drivers/net/ice/ice_hash.c             | 562 +++++++++++++++++++++++++++++++++
> drivers/net/ice/meson.build            |   3 +-
> 6 files changed, 591 insertions(+), 2 deletions(-)
> create mode 100644 drivers/net/ice/ice_hash.c
>
>-- 
>1.8.3.1
>

Series applied to dpdk-next-net-intel.

Thanks,
Xiaolong