HV: rename resume_vm to start_vm in hypercall api

Currently we don't support resume VM in HC API, the real meaning
of the code is to start VM.

Signed-off-by: Victor Sun <victor.sun@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Victor Sun
2018-07-31 13:25:51 +08:00
committed by lijinxia
parent 5e31e7c66f
commit 00bfde3cde
3 changed files with 5 additions and 5 deletions

View File

@@ -209,7 +209,7 @@ int32_t hcall_destroy_vm(uint16_t vmid)
return ret;
}
int32_t hcall_resume_vm(uint16_t vmid)
int32_t hcall_start_vm(uint16_t vmid)
{
int32_t ret = 0;
struct vm *target_vm = get_vm_from_vmid(vmid);