diff options
| author | Michael S. Tsirkin | 2010-11-22 18:52:26 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin | 2010-12-09 11:47:48 +0100 |
| commit | eff06c40d330cdbea414331337ca6f5032dbf6d7 (patch) | |
| tree | 9eb5bdab8f011ba0e70da12373e08e0241c89029 /savevm.c | |
| parent | cpus: flush all requests on each vm stop (diff) | |
| download | qemu-eff06c40d330cdbea414331337ca6f5032dbf6d7.tar.gz qemu-eff06c40d330cdbea414331337ca6f5032dbf6d7.tar.xz qemu-eff06c40d330cdbea414331337ca6f5032dbf6d7.zip | |
migration/savevm: no need to flush requests
There's no need to flush requests after vmstop
as vmstop does it for us automatically now.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Tested-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'savevm.c')
| -rw-r--r-- | savevm.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1575,8 +1575,6 @@ static int qemu_savevm_state(Monitor *mon, QEMUFile *f) saved_vm_running = vm_running; vm_stop(0); - bdrv_flush_all(); - ret = qemu_savevm_state_begin(mon, f, 0, 0); if (ret < 0) goto out; @@ -1885,8 +1883,6 @@ void do_savevm(Monitor *mon, const QDict *qdict) monitor_printf(mon, "No block device can accept snapshots\n"); return; } - /* ??? Should this occur after vm_stop? */ - qemu_aio_flush(); saved_vm_running = vm_running; vm_stop(0); |
