diff --git a/Cargo.lock b/Cargo.lock index 4565121e4..de384fe7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2581,9 +2581,9 @@ source = "git+https://github.com/rust-vmm/vm-fdt?branch=main#77212bd0d62913e445c [[package]] name = "vm-memory" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74ffc42216c32c35f858fa4bfdcd9b61017dfd691e0240268fdc85dbf59e5459" +checksum = "3c3aba5064cc5f6f7740cddc8dae34d2d9a311cac69b60d942af7f3ab8fc49f4" dependencies = [ "arc-swap", "libc", diff --git a/Cargo.toml b/Cargo.toml index 2f33a1325..608b58607 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ tpm = { path = "tpm"} tracer = { path = "tracer" } vmm = { path = "vmm" } vmm-sys-util = "0.12.1" -vm-memory = "0.14.0" +vm-memory = "0.14.1" zbus = { version = "3.15.2", optional = true } # List of patched crates diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 0e6c14f81..f8341f961 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -21,7 +21,7 @@ thiserror = "1.0.52" uuid = "1.3.4" versionize = "0.2.0" versionize_derive = "0.1.6" -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-bitmap"] } vm-migration = { path = "../vm-migration" } vmm-sys-util = { version = "0.12.1", features = ["with-serde"] } diff --git a/block/Cargo.toml b/block/Cargo.toml index 41530c6d2..9728e67e6 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -22,6 +22,6 @@ versionize = "0.2.0" versionize_derive = "0.1.6" virtio-bindings = { version = "0.2.0", features = ["virtio-v5_0_0"] } virtio-queue = "0.11.0" -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = "0.12.1" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 942afbcac..dc68cfacf 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -21,7 +21,7 @@ versionize = "0.2.0" versionize_derive = "0.1.6" vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = "0.14.0" +vm-memory = "0.14.1" vm-migration = { path = "../vm-migration" } vmm-sys-util = "0.12.1" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 60cad550b..0a211e689 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -25,7 +25,7 @@ mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optio serde = { version = "1.0.196", features = ["rc", "derive"] } serde_with = { version = "3.7.0", default-features = false, features = ["macros"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = "0.12.1", features = ["with-serde"] } thiserror = "1.0.52" diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 2c63581c7..f9bec9df7 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -17,7 +17,7 @@ versionize = "0.2.0" versionize_derive = "0.1.6" virtio-bindings = "0.2.0" virtio-queue = "0.11.0" -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = "0.12.1" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 9e7708705..b1c312b2a 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -26,5 +26,5 @@ versionize = "0.2.0" versionize_derive = "0.1.6" vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-migration = { path = "../vm-migration" } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index c826a432a..004d06e70 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -17,5 +17,5 @@ vhost = { version = "0.10.0", features = ["vhost-user-backend"] } vhost-user-backend = "0.13.1" virtio-bindings = "0.2.0" virtio-queue = "0.11.0" -vm-memory = "0.14.0" +vm-memory = "0.14.1" vmm-sys-util = "0.12.1" diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index fffb2fcfa..c558be192 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -16,5 +16,5 @@ option_parser = { path = "../option_parser" } vhost = { version = "0.10.0", features = ["vhost-user-backend"] } vhost-user-backend = "0.13.1" virtio-bindings = "0.2.0" -vm-memory = "0.14.0" +vm-memory = "0.14.1" vmm-sys-util = "0.12.1" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 062254d72..30aee96ff 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -32,7 +32,7 @@ virtio-bindings = { version = "0.2.0", features = ["virtio-v5_0_0"] } virtio-queue = "0.11.0" vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-migration = { path = "../vm-migration" } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = "0.12.1" diff --git a/vm-allocator/Cargo.toml b/vm-allocator/Cargo.toml index 66adb21b0..08207de7c 100644 --- a/vm-allocator/Cargo.toml +++ b/vm-allocator/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] libc = "0.2.153" -vm-memory = "0.14.0" +vm-memory = "0.14.1" [target.'cfg(target_arch = "aarch64")'.dependencies] arch = { path = "../arch" } diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 21a331a24..2607aaec5 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -15,5 +15,5 @@ hypervisor = { path = "../hypervisor" } thiserror = "1.0.52" serde = { version = "1.0.196", features = ["rc", "derive"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } -vm-memory = { version = "0.14.0", features = ["backend-mmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap"] } vmm-sys-util = "0.12.1" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index a19e6b369..d41e8aacd 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -11,4 +11,4 @@ serde = { version = "1.0.196", features = ["rc", "derive"] } serde_json = "1.0.114" versionize = "0.2.0" versionize_derive = "0.1.6" -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic"] } diff --git a/vm-virtio/Cargo.toml b/vm-virtio/Cargo.toml index 1b279d34b..c33878e3a 100644 --- a/vm-virtio/Cargo.toml +++ b/vm-virtio/Cargo.toml @@ -10,4 +10,4 @@ default = [] [dependencies] log = "0.4.20" virtio-queue = "0.11.0" -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index a09241bfc..14d9af7b2 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -64,7 +64,7 @@ virtio-devices = { path = "../virtio-devices" } virtio-queue = "0.11.0" vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } -vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-migration = { path = "../vm-migration" } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }