Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ ignore = [
# the `thread_rng` feature, so the affected functions are not compiled in.
# See https://rustsec.org/advisories/RUSTSEC-2026-0097.html
"RUSTSEC-2026-0097",

# `anyhow` is not directly used by any of our crates. It is a transitive
# dependency of build-time WASM tooling (wit-bindgen).
# See https://rustsec.org/advisories/RUSTSEC-2026-0190.html
"RUSTSEC-2026-0190",
]
12 changes: 12 additions & 0 deletions tests/integration_tests/performance/test_hotplug_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
run on an ag=1 host due to the use of HugePages.
"""

import platform

import pytest
from tenacity import Retrying, retry_if_exception_type, stop_after_delay, wait_fixed

Expand Down Expand Up @@ -252,6 +254,11 @@ def check_hotunplug(uvm, requested_size_mib):
assert rss_after < rss_before, "RSS didn't decrease"


# TODO: remove this once the hotplug latency on 5.10 hosts is fixed
@pytest.mark.skipif(
platform.machine() == "x86_64" and global_props.host_linux_version_tpl == (5, 10),
reason="GET /hotplug/memory intermittently exceeds the duration threshold on x86_64 5.10 hosts",
)
def test_virtio_mem_hotplug_hotunplug(uvm_any_memhp):
"""
Check that memory can be hotplugged into the VM.
Expand Down Expand Up @@ -456,6 +463,11 @@ def timed_memory_hotplug(uvm, size, metrics, metric_prefix, fc_metric_name):
)


# TODO: remove this once the hotplug latency on 5.10 hosts is fixed
@pytest.mark.skipif(
platform.machine() == "x86_64" and global_props.host_linux_version_tpl == (5, 10),
reason="GET /hotplug/memory intermittently exceeds the duration threshold on x86_64 5.10 hosts",
)
@pytest.mark.nonci
@pytest.mark.parametrize(
"hotplug_size",
Expand Down
Loading