diff options
author | Max Reitz <mreitz@redhat.com> | 2016-03-16 19:54:32 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-03-17 15:47:56 +0100 |
commit | da31d594cf971795c1150ef1f5bdb01790b1b1b9 (patch) | |
tree | 1be81f733d4b240e8bae563cf18307054bcfad1c /cpus.c | |
parent | 1393f21270d707dfe0af3206b8757887c7b5c1ec (diff) | |
download | qemu-da31d594cf971795c1150ef1f5bdb01790b1b1b9.tar.gz qemu-da31d594cf971795c1150ef1f5bdb01790b1b1b9.tar.bz2 qemu-da31d594cf971795c1150ef1f5bdb01790b1b1b9.zip |
block: Use blk_{commit,flush}_all() consistently
Replace bdrv_commmit_all() and bdrv_flush_all() by their BlockBackend
equivalents.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'cpus.c')
-rw-r--r-- | cpus.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -29,6 +29,7 @@ #include "qapi/qmp/qerror.h" #include "qemu/error-report.h" #include "sysemu/sysemu.h" +#include "sysemu/block-backend.h" #include "exec/gdbstub.h" #include "sysemu/dma.h" #include "sysemu/kvm.h" @@ -734,7 +735,7 @@ static int do_vm_stop(RunState state) } bdrv_drain_all(); - ret = bdrv_flush_all(); + ret = blk_flush_all(); return ret; } @@ -1433,7 +1434,7 @@ int vm_stop_force_state(RunState state) bdrv_drain_all(); /* Make sure to return an error if the flush in a previous vm_stop() * failed. */ - return bdrv_flush_all(); + return blk_flush_all(); } } |