|
@@ -277,11 +277,15 @@ bool vm_get_suspended(void)
|
|
|
static int do_vm_stop(RunState state, bool send_stop)
|
|
|
{
|
|
|
int ret = 0;
|
|
|
+ RunState oldstate = runstate_get();
|
|
|
|
|
|
- if (runstate_is_running()) {
|
|
|
+ if (runstate_is_live(oldstate)) {
|
|
|
+ vm_was_suspended = (oldstate == RUN_STATE_SUSPENDED);
|
|
|
runstate_set(state);
|
|
|
cpu_disable_ticks();
|
|
|
- pause_all_vcpus();
|
|
|
+ if (oldstate == RUN_STATE_RUNNING) {
|
|
|
+ pause_all_vcpus();
|
|
|
+ }
|
|
|
vm_state_notify(0, state);
|
|
|
if (send_stop) {
|
|
|
qapi_event_send_stop();
|
|
@@ -694,11 +698,13 @@ int vm_stop(RunState state)
|
|
|
|
|
|
/**
|
|
|
* Prepare for (re)starting the VM.
|
|
|
- * Returns -1 if the vCPUs are not to be restarted (e.g. if they are already
|
|
|
- * running or in case of an error condition), 0 otherwise.
|
|
|
+ * Returns 0 if the vCPUs should be restarted, -1 on an error condition,
|
|
|
+ * and 1 otherwise.
|
|
|
*/
|
|
|
int vm_prepare_start(bool step_pending)
|
|
|
{
|
|
|
+ int ret = vm_was_suspended ? 1 : 0;
|
|
|
+ RunState state = vm_was_suspended ? RUN_STATE_SUSPENDED : RUN_STATE_RUNNING;
|
|
|
RunState requested;
|
|
|
|
|
|
qemu_vmstop_requested(&requested);
|
|
@@ -729,9 +735,10 @@ int vm_prepare_start(bool step_pending)
|
|
|
qapi_event_send_resume();
|
|
|
|
|
|
cpu_enable_ticks();
|
|
|
- runstate_set(RUN_STATE_RUNNING);
|
|
|
- vm_state_notify(1, RUN_STATE_RUNNING);
|
|
|
- return 0;
|
|
|
+ runstate_set(state);
|
|
|
+ vm_state_notify(1, state);
|
|
|
+ vm_was_suspended = false;
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
void vm_start(void)
|
|
@@ -745,7 +752,7 @@ void vm_start(void)
|
|
|
current state is forgotten forever */
|
|
|
int vm_stop_force_state(RunState state)
|
|
|
{
|
|
|
- if (runstate_is_running()) {
|
|
|
+ if (runstate_is_live(runstate_get())) {
|
|
|
return vm_stop(state);
|
|
|
} else {
|
|
|
int ret;
|