diff options
| author | Nataliia Solomko <natalirs1985@gmail.com> | 2025-10-08 17:25:25 +0300 |
|---|---|---|
| committer | Nataliia Solomko <natalirs1985@gmail.com> | 2025-10-14 13:36:26 +0300 |
| commit | 5e2e4a8f183f9723d4967ce47045f8789b58e924 (patch) | |
| tree | e379c072bc24be74469b95610f889492fc545577 /smoketest/scripts/cli | |
| parent | fc178aaf00f7a9dc4589567ae3e17cb9718d9ad3 (diff) | |
| download | vyos-1x-5e2e4a8f183f9723d4967ce47045f8789b58e924.tar.gz vyos-1x-5e2e4a8f183f9723d4967ce47045f8789b58e924.zip | |
T7897: VPP: fix rx-mode interrupt for XDP driver with workers
Remove no-syscall-lock from CLI and enable this option if interrupt/adaptive mode is enabled and workers are configured.
Also forbid interrupt mode for ixgbevf driver
Diffstat (limited to 'smoketest/scripts/cli')
| -rwxr-xr-x | smoketest/scripts/cli/test_vpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_vpp.py b/smoketest/scripts/cli/test_vpp.py index 37485bd0d..03b2fc673 100755 --- a/smoketest/scripts/cli/test_vpp.py +++ b/smoketest/scripts/cli/test_vpp.py @@ -1101,7 +1101,7 @@ class TestVPP(VyOSUnitTestSHIM.TestCase): # DPDK driver expect only dpdk-options and not xdp-options to be set # expect raise ConfigError - self.cli_set(base_interface_path + ['xdp-options', 'no-syscall-lock']) + self.cli_set(base_interface_path + ['xdp-options', 'zero-copy']) with self.assertRaises(ConfigSessionError): self.cli_commit() |
