arch, hypervisor, vmm: KvmHyperVisor -> KvmHypervisor

"Hypervisor" is one word. The "v" shouldn't be capitalised.

No functional change.

Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
Wei Liu
2020-06-24 12:06:29 +00:00
committed by Sebastien Boeuf
parent b00171e17d
commit b27439b6ed
5 changed files with 21 additions and 21 deletions

View File

@@ -1446,7 +1446,7 @@ pub fn test_vm() {
let load_addr = GuestAddress(0x1000);
let mem = GuestMemoryMmap::from_ranges(&[(load_addr, mem_size)]).unwrap();
let kvm = hypervisor::kvm::KvmHyperVisor::new().unwrap();
let kvm = hypervisor::kvm::KvmHypervisor::new().unwrap();
let hv: Arc<dyn hypervisor::Hypervisor> = Arc::new(kvm);
let vm_fd = hv.create_vm().expect("new VM fd creation failed");