Files
cloud-hypervisor/vm-allocator/Cargo.toml
Philipp Schuster 7c4fa04ea3 vm-allocator: introduce bitmap-backed InterruptAllocator
This introduces a bitmap-backed interrupt number allocator. The type is
not yet used but will be in the next commit and enable graceful
releasing of allocated interrupt numbers (GSIs).

Co-authored-by: Sebastian Eydam <sebastian.eydam@cyberus-technology.de>
On-behalf-of: SAP sebastian.eydam@sap.com
Signed-off-by: Sebastian Eydam <sebastian.eydam@cyberus-technology.de>

On-behalf-of: Philipp Schuster@sap.com
Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
2026-05-08 16:29:18 +00:00

22 lines
435 B
TOML

[package]
authors = ["The Chromium OS Authors"]
edition.workspace = true
name = "vm-allocator"
rust-version.workspace = true
version = "0.1.0"
[features]
default = []
kvm = ["arch/kvm"]
[dependencies]
libc = { workspace = true }
thiserror = { workspace = true }
vm-memory = { workspace = true }
[target.'cfg(any(target_arch = "aarch64", target_arch = "riscv64"))'.dependencies]
arch = { path = "../arch" }
[lints]
workspace = true