diff --git a/hypervisor/src/mshv/mod.rs b/hypervisor/src/mshv/mod.rs index dce562219..bfd2c1db4 100644 --- a/hypervisor/src/mshv/mod.rs +++ b/hypervisor/src/mshv/mod.rs @@ -2017,4 +2017,14 @@ impl vm::Vm for MshvVm { .complete_isolated_import(&data) .map_err(|e| vm::HypervisorVmError::CompleteIsolatedImport(e.into())) } + + #[cfg(target_arch = "aarch64")] + fn create_vgic(&self, config: VgicConfig) -> vm::Result>> { + unimplemented!() + } + + #[cfg(target_arch = "aarch64")] + fn get_preferred_target(&self, kvi: &mut VcpuInit) -> vm::Result<()> { + unimplemented!() + } }