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 35c456c commit 2289795Copy full SHA for 2289795
src/hyperlight_host/src/hypervisor/kvm.rs
@@ -81,16 +81,7 @@ impl KVMDriver {
81
log_then_return!("KVM is not present");
82
};
83
let kvm = Kvm::new()?;
84
-
85
- #[cfg(debug_assertions)]
86
- let _now = std::time::Instant::now();
87
let vm_fd = kvm.create_vm_with_type(0)?;
88
89
- println!(
90
- "Time to create_vm_with_type: {:?} from thread {:?}",
91
- _now.elapsed(),
92
- std::thread::current().name()
93
- );
94
95
let perm_flags =
96
MemoryRegionFlags::READ | MemoryRegionFlags::WRITE | MemoryRegionFlags::EXECUTE;
0 commit comments