Skip to content

Commit

Permalink
cpus: Add return value for vm_stop()
Browse files Browse the repository at this point in the history
If flushing the block devices fails, return an error. The VM is stopped
anyway.

Signed-off-by: Kevin Wolf <[email protected]>
Reviewed-by: Stefan Hajnoczi <[email protected]>
  • Loading branch information
kevmw committed Jul 15, 2013
1 parent f0f0fdf commit 5698346
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
20 changes: 13 additions & 7 deletions cpus.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,17 +434,21 @@ bool cpu_is_stopped(CPUState *cpu)
return !runstate_is_running() || cpu->stopped;
}

static void do_vm_stop(RunState state)
static int do_vm_stop(RunState state)
{
int ret = 0;

if (runstate_is_running()) {
cpu_disable_ticks();
pause_all_vcpus();
runstate_set(state);
vm_state_notify(0, state);
bdrv_drain_all();
bdrv_flush_all();
ret = bdrv_flush_all();
monitor_protocol_event(QEVENT_STOP, NULL);
}

return ret;
}

static bool cpu_can_run(CPUState *cpu)
Expand Down Expand Up @@ -1070,7 +1074,7 @@ void cpu_stop_current(void)
}
}

void vm_stop(RunState state)
int vm_stop(RunState state)
{
if (qemu_in_vcpu_thread()) {
qemu_system_vmstop_request(state);
Expand All @@ -1079,19 +1083,21 @@ void vm_stop(RunState state)
* vm_stop() has been requested.
*/
cpu_stop_current();
return;
return 0;
}
do_vm_stop(state);

return do_vm_stop(state);
}

/* does a state transition even if the VM is already stopped,
current state is forgotten forever */
void vm_stop_force_state(RunState state)
int vm_stop_force_state(RunState state)
{
if (runstate_is_running()) {
vm_stop(state);
return vm_stop(state);
} else {
runstate_set(state);
return 0;
}
}

Expand Down
4 changes: 2 additions & 2 deletions include/sysemu/sysemu.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ void vm_state_notify(int running, RunState state);
#define VMRESET_REPORT true

void vm_start(void);
void vm_stop(RunState state);
void vm_stop_force_state(RunState state);
int vm_stop(RunState state);
int vm_stop_force_state(RunState state);

typedef enum WakeupReason {
QEMU_WAKEUP_REASON_OTHER = 0,
Expand Down
2 changes: 1 addition & 1 deletion stubs/vm-stop.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "qemu-common.h"
#include "sysemu/sysemu.h"

void vm_stop(RunState state)
int vm_stop(RunState state)
{
abort();
}

0 comments on commit 5698346

Please sign in to comment.