diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-05-06 20:30:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-06 20:30:05 +0200 |
| commit | 728721202b76376a93f3be90ec4c0a42c681a3b5 (patch) | |
| tree | 535b93ab3a5928a7a39e366286453d258b39ea5c /smoketest/scripts/cli | |
| parent | a9ea7cb5b80549f773ab80c4f6b6bfedb50cb3fc (diff) | |
| parent | 136f677b7accfba4be0d3e5519a89958f0b51f32 (diff) | |
| download | vyos-1x-728721202b76376a93f3be90ec4c0a42c681a3b5.tar.gz vyos-1x-728721202b76376a93f3be90ec4c0a42c681a3b5.zip | |
Merge pull request #5159 from c-po/kernel-6.18
T8147: Update Linux Kernel to 6.18
Diffstat (limited to 'smoketest/scripts/cli')
| -rwxr-xr-x | smoketest/scripts/cli/test_interfaces_ethernet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_ethernet.py b/smoketest/scripts/cli/test_interfaces_ethernet.py index 7e0da2079..06253cf9e 100755 --- a/smoketest/scripts/cli/test_interfaces_ethernet.py +++ b/smoketest/scripts/cli/test_interfaces_ethernet.py @@ -234,8 +234,8 @@ class EthernetInterfaceTest(BasicInterfaceTest.TestCase): # To find out the supported features supported_rx_usecs = ethtool.check_coalesce('rx_usecs') supported_tx_usecs = ethtool.check_coalesce('tx_usecs') - supported_adaptive_rx = ethtool.check_coalesce('adaptive_rx') - supported_adaptive_tx = ethtool.check_coalesce('adaptive_tx') + supported_adaptive_rx = ethtool.check_coalesce('adaptive_rx') and not is_virtio + supported_adaptive_tx = ethtool.check_coalesce('adaptive_tx') and not is_virtio # Disabled adaptive modes and set custom values if supported_rx_usecs: |
