From fb27dc5dd711bbaa749e2b2f850acec659d37a6b Mon Sep 17 00:00:00 2001 From: Chao Wu Date: Mon, 24 Oct 2022 20:07:56 +0800 Subject: [PATCH] interrupt: update interrupt version in virtio_dev Since interrupt version is updated, we should also upgrade the interrupt version in dbs-virtio-devices. Signed-off-by: Chao Wu --- crates/dbs-virtio-devices/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/dbs-virtio-devices/Cargo.toml b/crates/dbs-virtio-devices/Cargo.toml index 8bdf6bfe..82eb145e 100644 --- a/crates/dbs-virtio-devices/Cargo.toml +++ b/crates/dbs-virtio-devices/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" byteorder = "1.4.3" caps = "0.5.3" dbs-device = { version = "0.2.0", path = "../dbs-device" } -dbs-interrupt = { version = "0.1.0", path = "../dbs-interrupt", features = ["kvm-legacy-irq", "kvm-msi-irq"] } +dbs-interrupt = { version = "0.2.0", path = "../dbs-interrupt", features = ["kvm-legacy-irq", "kvm-msi-irq"] } dbs-utils = { version = "0.2.0", path = "../dbs-utils" } epoll = "4.0.1" io-uring = "0.5.2"