mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
6364823093
Implemented the remaining IrqChip trait functions for the KvmKernelIrqChip, including register/unregister_irq_event and irq routing functions. Added some irqchip tests for setting irq routes and servicing irq lines. Also added tests for registering irq events. BUG=chromium:1077058 TEST=cargo test -p devices -p hypervisor Change-Id: Ia04c927b663ebdcacc88bc61d746077aa5b02514 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2246648 Reviewed-by: Stephen Barber <smbarber@chromium.org> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Colin Downs-Razouk <colindr@google.com>
15 lines
362 B
TOML
15 lines
362 B
TOML
[package]
|
|
name = "hypervisor"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bit_field = { path = "../bit_field" }
|
|
data_model = { path = "../data_model" }
|
|
enumn = { path = "../enumn" }
|
|
libc = "*"
|
|
kvm = { path = "../kvm" }
|
|
kvm_sys = { path = "../kvm_sys" }
|
|
sync = { path = "../sync" }
|
|
sys_util = { path = "../sys_util" }
|