diff options
author | David Wei <dw@davidwei.uk> | 2025-05-02 21:30:07 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2025-05-06 17:51:11 -0700 |
commit | df6a69bc8f31fc34ac1f5408a82e60a3f31d905e (patch) | |
tree | dc5127d262e07d3156ea1ada7b674d5d870f1867 | |
parent | 075001c9eb41be4f7841958d575786574dcc9b28 (diff) |
io_uring/zcrx: selftests: fix setting ntuple rule into rss
Fix ethtool syntax for setting ntuple rule into rss. It should be
`context' instead of `action'.
Signed-off-by: David Wei <dw@davidwei.uk>
Link: https://patch.msgid.link/20250503043007.857215-1-dw@davidwei.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rwxr-xr-x | tools/testing/selftests/drivers/net/hw/iou-zcrx.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/testing/selftests/drivers/net/hw/iou-zcrx.py b/tools/testing/selftests/drivers/net/hw/iou-zcrx.py index aef43f82edd5..9c03fd777f3d 100755 --- a/tools/testing/selftests/drivers/net/hw/iou-zcrx.py +++ b/tools/testing/selftests/drivers/net/hw/iou-zcrx.py @@ -19,8 +19,8 @@ def _get_combined_channels(cfg): return int(values[1]) -def _create_rss_ctx(cfg, chans): - output = ethtool(f"-X {cfg.ifname} context new start {chans - 1} equal 1", host=cfg.remote).stdout +def _create_rss_ctx(cfg, chan): + output = ethtool(f"-X {cfg.ifname} context new start {chan} equal 1", host=cfg.remote).stdout values = re.search(r'New RSS context is (\d+)', output).group(1) ctx_id = int(values) return (ctx_id, defer(ethtool, f"-X {cfg.ifname} delete context {ctx_id}", host=cfg.remote)) @@ -32,8 +32,8 @@ def _set_flow_rule(cfg, port, chan): return int(values) -def _set_flow_rule_rss(cfg, port, chan): - output = ethtool(f"-N {cfg.ifname} flow-type tcp6 dst-port {port} action {chan}", host=cfg.remote).stdout +def _set_flow_rule_rss(cfg, port, ctx_id): + output = ethtool(f"-N {cfg.ifname} flow-type tcp6 dst-port {port} context {ctx_id}", host=cfg.remote).stdout values = re.search(r'ID (\d+)', output).group(1) return int(values) @@ -121,7 +121,7 @@ def test_zcrx_rss(cfg) -> None: ethtool(f"-X {cfg.ifname} equal {combined_chans - 1}", host=cfg.remote) defer(ethtool, f"-X {cfg.ifname} default", host=cfg.remote) - (ctx_id, delete_ctx) = _create_rss_ctx(cfg, combined_chans) + (ctx_id, delete_ctx) = _create_rss_ctx(cfg, combined_chans - 1) flow_rule_id = _set_flow_rule_rss(cfg, port, ctx_id) defer(ethtool, f"-N {cfg.ifname} delete {flow_rule_id}", host=cfg.remote) |