mbox series

[v11,0/7] Enable ETS-based TX QoS on PF

Message ID 20220517050932.4078968-1-wenjun1.wu@intel.com (mailing list archive)
Headers
Series Enable ETS-based TX QoS on PF |

Message

Wenjun Wu May 17, 2022, 5:09 a.m. UTC
  This patch set enables ETS-based TX QoS on PF. It is supported to
configure bandwidth and priority in both queue and queue group level,
and weight only in queue level.

v2: fix code style issue.
v3: fix uninitialization issue.
v4: fix logical issue.
v5: fix CI testing issue. Add explicit cast.
v6: add release note.
v7: merge the release note with the previous patch.
v8: rework shared code patch.
v9: rebase the code.
v10: rebase the code and rework the release note.
v11: add fix information in commit log.

Ting Xu (1):
  net/ice: support queue and queue group bandwidth limit

Wenjun Wu (6):
  net/ice/base: fix dead lock issue when getting node from ID type
  net/ice/base: support queue BW allocation configuration
  net/ice/base: support priority configuration of the exact node
  net/ice: support queue and queue group priority configuration
  net/ice: support queue weight configuration
  net/ice: add warning log for unsupported configuration

 doc/guides/rel_notes/release_22_07.rst |   3 +
 drivers/net/ice/base/ice_sched.c       |  90 ++-
 drivers/net/ice/base/ice_sched.h       |   6 +
 drivers/net/ice/ice_ethdev.c           |  19 +
 drivers/net/ice/ice_ethdev.h           |  55 ++
 drivers/net/ice/ice_tm.c               | 845 +++++++++++++++++++++++++
 drivers/net/ice/meson.build            |   1 +
 7 files changed, 1017 insertions(+), 2 deletions(-)
 create mode 100644 drivers/net/ice/ice_tm.c
  

Comments

Qi Zhang May 17, 2022, 7:23 a.m. UTC | #1
> -----Original Message-----
> From: Wu, Wenjun1 <wenjun1.wu@intel.com>
> Sent: Tuesday, May 17, 2022 1:09 PM
> To: dev@dpdk.org; Yang, Qiming <qiming.yang@intel.com>; Zhang, Qi Z
> <qi.z.zhang@intel.com>
> Subject: [PATCH v11 0/7] Enable ETS-based TX QoS on PF
> 
> This patch set enables ETS-based TX QoS on PF. It is supported to configure
> bandwidth and priority in both queue and queue group level, and weight only in
> queue level.
> 
> v2: fix code style issue.
> v3: fix uninitialization issue.
> v4: fix logical issue.
> v5: fix CI testing issue. Add explicit cast.
> v6: add release note.
> v7: merge the release note with the previous patch.
> v8: rework shared code patch.
> v9: rebase the code.
> v10: rebase the code and rework the release note.
> v11: add fix information in commit log.
> 
> Ting Xu (1):
>   net/ice: support queue and queue group bandwidth limit
> 
> Wenjun Wu (6):
>   net/ice/base: fix dead lock issue when getting node from ID type
>   net/ice/base: support queue BW allocation configuration
>   net/ice/base: support priority configuration of the exact node
>   net/ice: support queue and queue group priority configuration
>   net/ice: support queue weight configuration
>   net/ice: add warning log for unsupported configuration
> 
>  doc/guides/rel_notes/release_22_07.rst |   3 +
>  drivers/net/ice/base/ice_sched.c       |  90 ++-
>  drivers/net/ice/base/ice_sched.h       |   6 +
>  drivers/net/ice/ice_ethdev.c           |  19 +
>  drivers/net/ice/ice_ethdev.h           |  55 ++
>  drivers/net/ice/ice_tm.c               | 845 +++++++++++++++++++++++++
>  drivers/net/ice/meson.build            |   1 +
>  7 files changed, 1017 insertions(+), 2 deletions(-)  create mode 100644
> drivers/net/ice/ice_tm.c
> 
> --
> 2.25.1

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

Applied to dpdk-next-net-intel.

Thanks
Qi