mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
devices, vmm: Upgrade exit reasons to info!() level debugging
These statements are useful for understanding the cause of reset or shutdown of the VM and are not spammy so should be included at info!() level. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
@@ -786,13 +786,13 @@ impl CpuManager {
|
||||
VmExit::Ignore => {}
|
||||
VmExit::Hyperv => {}
|
||||
VmExit::Reset => {
|
||||
debug!("VmExit::Reset");
|
||||
info!("VmExit::Reset");
|
||||
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
||||
reset_evt.write(1).unwrap();
|
||||
break;
|
||||
}
|
||||
VmExit::Shutdown => {
|
||||
debug!("VmExit::Shutdown");
|
||||
info!("VmExit::Shutdown");
|
||||
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
||||
exit_evt.write(1).unwrap();
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user