* [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices
@ 2013-07-18 12:52 Kevin Wolf
2013-07-18 12:55 ` Kevin Wolf
2013-07-19 4:24 ` Stefan Hajnoczi
0 siblings, 2 replies; 4+ messages in thread
From: Kevin Wolf @ 2013-07-18 12:52 UTC (permalink / raw)
To: qemu-devel; +Cc: kwolf, pbonzini, stefanha
Even if the VM is already stopped, we cannot assume that all data has
already been successfully flushed to disk. The flush during the previous
vm_stop() could have failed.
Run bdrv_flush_all() unconditionally so that we get an error each time
if the block device isn't really flushed.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
cpus.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/cpus.c b/cpus.c
index 8062cdd..2509eb5 100644
--- a/cpus.c
+++ b/cpus.c
@@ -443,11 +443,12 @@ static int do_vm_stop(RunState state)
pause_all_vcpus();
runstate_set(state);
vm_state_notify(0, state);
- bdrv_drain_all();
- ret = bdrv_flush_all();
monitor_protocol_event(QEVENT_STOP, NULL);
}
+ bdrv_drain_all();
+ ret = bdrv_flush_all();
+
return ret;
}
@@ -1126,7 +1127,9 @@ int vm_stop_force_state(RunState state)
return vm_stop(state);
} else {
runstate_set(state);
- return 0;
+ /* Make sure to return an error if the flush in a previous vm_stop()
+ * failed. */
+ return bdrv_flush_all();
}
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices
2013-07-18 12:52 [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices Kevin Wolf
@ 2013-07-18 12:55 ` Kevin Wolf
2013-07-18 13:02 ` Eric Blake
2013-07-19 4:24 ` Stefan Hajnoczi
1 sibling, 1 reply; 4+ messages in thread
From: Kevin Wolf @ 2013-07-18 12:55 UTC (permalink / raw)
To: qemu-devel; +Cc: pbonzini, qemu-stable, stefanha
Am 18.07.2013 um 14:52 hat Kevin Wolf geschrieben:
> Even if the VM is already stopped, we cannot assume that all data has
> already been successfully flushed to disk. The flush during the previous
> vm_stop() could have failed.
>
> Run bdrv_flush_all() unconditionally so that we get an error each time
> if the block device isn't really flushed.
>
Oops, forgot it again:
Cc: qemu-stable@nongnu.org
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> cpus.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/cpus.c b/cpus.c
> index 8062cdd..2509eb5 100644
> --- a/cpus.c
> +++ b/cpus.c
> @@ -443,11 +443,12 @@ static int do_vm_stop(RunState state)
> pause_all_vcpus();
> runstate_set(state);
> vm_state_notify(0, state);
> - bdrv_drain_all();
> - ret = bdrv_flush_all();
> monitor_protocol_event(QEVENT_STOP, NULL);
> }
>
> + bdrv_drain_all();
> + ret = bdrv_flush_all();
> +
> return ret;
> }
>
> @@ -1126,7 +1127,9 @@ int vm_stop_force_state(RunState state)
> return vm_stop(state);
> } else {
> runstate_set(state);
> - return 0;
> + /* Make sure to return an error if the flush in a previous vm_stop()
> + * failed. */
> + return bdrv_flush_all();
> }
> }
>
> --
> 1.8.1.4
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices
2013-07-18 12:55 ` Kevin Wolf
@ 2013-07-18 13:02 ` Eric Blake
0 siblings, 0 replies; 4+ messages in thread
From: Eric Blake @ 2013-07-18 13:02 UTC (permalink / raw)
To: Kevin Wolf; +Cc: pbonzini, qemu-devel, stefanha, qemu-stable
[-- Attachment #1: Type: text/plain, Size: 772 bytes --]
On 07/18/2013 06:55 AM, Kevin Wolf wrote:
> Am 18.07.2013 um 14:52 hat Kevin Wolf geschrieben:
>> Even if the VM is already stopped, we cannot assume that all data has
>> already been successfully flushed to disk. The flush during the previous
>> vm_stop() could have failed.
>>
>> Run bdrv_flush_all() unconditionally so that we get an error each time
>> if the block device isn't really flushed.
>>
>
> Oops, forgot it again:
>
> Cc: qemu-stable@nongnu.org
>
>> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
>> ---
>> cpus.c | 9 ++++++---
>> 1 file changed, 6 insertions(+), 3 deletions(-)
Reviewed-by: Eric Blake <eblake@redhat.com>
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 621 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices
2013-07-18 12:52 [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices Kevin Wolf
2013-07-18 12:55 ` Kevin Wolf
@ 2013-07-19 4:24 ` Stefan Hajnoczi
1 sibling, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2013-07-19 4:24 UTC (permalink / raw)
To: Kevin Wolf; +Cc: pbonzini, qemu-devel
On Thu, Jul 18, 2013 at 02:52:19PM +0200, Kevin Wolf wrote:
> Even if the VM is already stopped, we cannot assume that all data has
> already been successfully flushed to disk. The flush during the previous
> vm_stop() could have failed.
>
> Run bdrv_flush_all() unconditionally so that we get an error each time
> if the block device isn't really flushed.
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> cpus.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-07-19 4:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-18 12:52 [Qemu-devel] [PATCH] cpus: Let vm_stop[_force_state]() always flush block devices Kevin Wolf
2013-07-18 12:55 ` Kevin Wolf
2013-07-18 13:02 ` Eric Blake
2013-07-19 4:24 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).