vmm: move kvm feature gate right before the if condition

This change uses the kvm feature gate cleaner way
in the handling of PIO/MMIO exits.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam 2023-01-11 09:36:48 -08:00 committed by Sebastien Boeuf
parent 7d8f795430
commit 06e583c9ab

View File

@ -920,7 +920,6 @@ impl CpuManager {
// to be executed.
#[cfg(feature = "kvm")]
{
if matches!(hypervisor_type, HypervisorType::Kvm) {
vcpu.lock().as_ref().unwrap().vcpu.set_immediate_exit(true);
if !matches!(vcpu.lock().unwrap().run(), Ok(VmExit::Ignore)) {
@ -929,7 +928,6 @@ impl CpuManager {
}
vcpu.lock().as_ref().unwrap().vcpu.set_immediate_exit(false);
}
}
vcpu_run_interrupted.store(true, Ordering::SeqCst);
while vcpu_pause_signalled.load(Ordering::SeqCst) {