Skip to content

Commit

Permalink
io_uring/zcrx: fix selftests w/ updated netdev Python helpers
Browse files Browse the repository at this point in the history
Fix io_uring zero copy rx selftest with updated netdev Python helpers.

Signed-off-by: David Wei <dw@davidwei.uk>
Link: https://patch.msgid.link/20250402172414.895276-1-dw@davidwei.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
David Wei authored and Jakub Kicinski committed Apr 3, 2025
1 parent 8ea7c1b commit c0f2178
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/testing/selftests/drivers/net/hw/iou-zcrx.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _set_flow_rule(cfg, chan):


def test_zcrx(cfg) -> None:
cfg.require_v6()
cfg.require_ipver('6')

combined_chans = _get_combined_channels(cfg)
if combined_chans < 2:
Expand All @@ -40,7 +40,7 @@ def test_zcrx(cfg) -> None:
flow_rule_id = _set_flow_rule(cfg, combined_chans - 1)

rx_cmd = f"{cfg.bin_remote} -s -p 9999 -i {cfg.ifname} -q {combined_chans - 1}"
tx_cmd = f"{cfg.bin_local} -c -h {cfg.remote_v6} -p 9999 -l 12840"
tx_cmd = f"{cfg.bin_local} -c -h {cfg.remote_addr_v['6']} -p 9999 -l 12840"
with bkg(rx_cmd, host=cfg.remote, exit_wait=True):
wait_port_listen(9999, proto="tcp", host=cfg.remote)
cmd(tx_cmd)
Expand All @@ -51,7 +51,7 @@ def test_zcrx(cfg) -> None:


def test_zcrx_oneshot(cfg) -> None:
cfg.require_v6()
cfg.require_ipver('6')

combined_chans = _get_combined_channels(cfg)
if combined_chans < 2:
Expand All @@ -64,7 +64,7 @@ def test_zcrx_oneshot(cfg) -> None:
flow_rule_id = _set_flow_rule(cfg, combined_chans - 1)

rx_cmd = f"{cfg.bin_remote} -s -p 9999 -i {cfg.ifname} -q {combined_chans - 1} -o 4"
tx_cmd = f"{cfg.bin_local} -c -h {cfg.remote_v6} -p 9999 -l 4096 -z 16384"
tx_cmd = f"{cfg.bin_local} -c -h {cfg.remote_addr_v['6']} -p 9999 -l 4096 -z 16384"
with bkg(rx_cmd, host=cfg.remote, exit_wait=True):
wait_port_listen(9999, proto="tcp", host=cfg.remote)
cmd(tx_cmd)
Expand Down

0 comments on commit c0f2178

Please sign in to comment.