build: Bump mshv crate to latest version

Move mshv crates from v0.3.2 to v0.3.3

Signed-off-by: Jinank Jain <jinankjain@microsoft.com>
This commit is contained in:
Jinank Jain
2025-02-05 23:19:29 +05:30
committed by Rob Bradford
parent 07b7457c2e
commit 7db3002e1d
3 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View File

@@ -1255,9 +1255,9 @@ checksum = "9bec4598fddb13cc7b528819e697852653252b760f1228b7642679bf2ff2cd07"
[[package]] [[package]]
name = "mshv-bindings" name = "mshv-bindings"
version = "0.3.2" version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e0cb5031f3243a7459b7c13d960d25420980874eebda816db24ce6077e21d43" checksum = "30f83f36cb864d90b62a4576556cef3319603d02f3aca58a87694e1e0694bdda"
dependencies = [ dependencies = [
"libc", "libc",
"num_enum", "num_enum",
@@ -1269,9 +1269,9 @@ dependencies = [
[[package]] [[package]]
name = "mshv-ioctls" name = "mshv-ioctls"
version = "0.3.2" version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89abe853221fa6f14ad4066affb9abda241a03d65622887d5794e1422d0bd75a" checksum = "7cd6d081aa1eb9916b8f2ac89a6f22adaaa9b5308c71ff5f14332143dc52aaf6"
dependencies = [ dependencies = [
"libc", "libc",
"mshv-bindings", "mshv-bindings",

View File

@@ -106,8 +106,8 @@ acpi_tables = { git = "https://github.com/rust-vmm/acpi_tables", branch = "main"
kvm-bindings = "0.10.0" kvm-bindings = "0.10.0"
kvm-ioctls = "0.19.1" kvm-ioctls = "0.19.1"
linux-loader = "0.13.0" linux-loader = "0.13.0"
mshv-bindings = "0.3.2" mshv-bindings = "0.3.3"
mshv-ioctls = "0.3.2" mshv-ioctls = "0.3.3"
seccompiler = "0.4.0" seccompiler = "0.4.0"
vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main" } vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main" }
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }

View File

@@ -1868,7 +1868,7 @@ impl vm::Vm for MshvVm {
fn create_passthrough_device(&self) -> vm::Result<VfioDeviceFd> { fn create_passthrough_device(&self) -> vm::Result<VfioDeviceFd> {
let mut vfio_dev = mshv_create_device { let mut vfio_dev = mshv_create_device {
type_: mshv_device_type_MSHV_DEV_TYPE_VFIO, type_: MSHV_DEV_TYPE_VFIO,
fd: 0, fd: 0,
flags: 0, flags: 0,
}; };