We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aeecc4 commit 4e2caafCopy full SHA for 4e2caaf
src/vmm/src/arch/aarch64/gic/gicv3/mod.rs
@@ -6,6 +6,7 @@ mod regs;
6
use kvm_ioctls::{DeviceFd, VmFd};
7
8
use crate::arch::aarch64::gic::{GicError, GicState};
9
+use crate::logger::info;
10
11
#[derive(Debug)]
12
pub struct GICv3(super::GIC);
@@ -142,6 +143,12 @@ impl GICv3 {
142
143
flags: 0,
144
};
145
146
+ let msi_address = Self::get_msi_address(gic_device.vcpu_count());
147
+ info!(
148
+ "MSI address for VM with {} vCPUs: {msi_address:x#}",
149
+ gic_device.vcpu_count()
150
+ );
151
+
152
let its_fd = vm
153
.create_device(&mut its_device)
154
.map_err(GicError::CreateGIC)?;
0 commit comments