tools: acrn-manager: Fix acrnctl mistake displaying suspended to paused

When UOS is sleeping, 'acrnctl list' command show it is 'paused', not
'suspended'. That is not correct. Because pausing an UOS means to block
its VCPUs immediately, otherwise suspending an UOS means to put it to
sleep.

Tracked-On: #1910
Acked-by: Yan, Like <like.yan@intel.com>
Signed-off-by: Tao Yuhong <yuhong.tao@intel.com>
This commit is contained in:
yuhong.tao@intel.com
2018-11-23 09:55:52 +00:00
committed by lijinxia
parent e1d0f7e432
commit 2f33d1bcf2
4 changed files with 9 additions and 7 deletions

View File

@@ -135,7 +135,7 @@ void acrnd_vm_timer_func(struct work_arg *arg)
case VM_CREATED:
acrnd_run_vm(arg->name);
break;
case VM_PAUSED:
case VM_SUSPENDED:
resume_vm(arg->name, CBC_WK_RSN_RTC);
break;
default:
@@ -251,7 +251,7 @@ static int active_all_vms(void)
if (!pid)
acrnd_run_vm(vm->name);
break;
case VM_PAUSED:
case VM_SUSPENDED:
reason = get_sos_wakeup_reason();
ret += resume_vm(vm->name, reason);
break;
@@ -288,7 +288,7 @@ static int wakeup_suspended_vms(unsigned wakeup_reason)
vmmngr_update();
LIST_FOREACH(vm, &vmmngr_head, list) {
if (vm->state == VM_PAUSED)
if (vm->state == VM_SUSPENDED)
ret += resume_vm(vm->name, wakeup_reason);
}
@@ -466,7 +466,7 @@ static int wait_for_stop(unsigned int timeout)
return SHUTDOWN;
}
if (check_vms_status(VM_PAUSED) == 0) {
if (check_vms_status(VM_SUSPENDED) == 0) {
printf("All vms have entered S3 state successfully\n");
return SUSPEND;
}