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