Skip to content

Commit 67ee2f5

Browse files
committed
Upgrade KVM bindings at the same time and remove unused error type
Signed-off-by: James Sturtevant <[email protected]>
1 parent af5759e commit 67ee2f5

File tree

3 files changed

+12
-36
lines changed

3 files changed

+12
-36
lines changed

Cargo.lock

Lines changed: 11 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/hyperlight_host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ lazy_static = "1.4.0"
7575
[target.'cfg(unix)'.dependencies]
7676
seccompiler = { version = "0.5.0", optional = true }
7777
kvm-bindings = { version = "0.14", features = ["fam-wrappers"], optional = true }
78-
kvm-ioctls = { version = "0.23", optional = true }
78+
kvm-ioctls = { version = "0.24", optional = true }
7979
mshv-bindings2 = { package="mshv-bindings", version = "=0.2.1", optional = true }
8080
mshv-ioctls2 = { package="mshv-ioctls", version = "=0.2.1", optional = true}
8181
mshv-bindings3 = { package="mshv-bindings", version = "=0.3.2", optional = true }

src/hyperlight_host/src/error.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -265,11 +265,6 @@ pub enum HyperlightError {
265265
)]
266266
VectorCapacityIncorrect(usize, usize, i32),
267267

268-
/// vmm sys Error Occurred
269-
#[error("vmm sys Error {0:?}")]
270-
#[cfg(target_os = "linux")]
271-
VmmSysError(#[from] vmm_sys_util::errno::Error),
272-
273268
/// Windows Error
274269
#[cfg(target_os = "windows")]
275270
#[error("Windows API Error Result {0:?}")]

0 commit comments

Comments
 (0)