[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-block] [Qemu-devel] [PATCH] block: add missing call to bdrv_dr
From: |
Fam Zheng |
Subject: |
Re: [Qemu-block] [Qemu-devel] [PATCH] block: add missing call to bdrv_drain_recurse |
Date: |
Fri, 25 Dec 2015 09:55:22 +0800 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Wed, 12/23 11:48, Paolo Bonzini wrote:
> This is also needed in bdrv_drain_all, not just in bdrv_drain.
>
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
> block/io.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/block/io.c b/block/io.c
> index 841f5b5..bfe2544 100644
> --- a/block/io.c
> +++ b/block/io.c
> @@ -293,6 +293,7 @@ void bdrv_drain_all(void)
> if (bs->job) {
> block_job_pause(bs->job);
> }
> + bdrv_drain_recurse(bs);
> aio_context_release(aio_context);
>
> if (!g_slist_find(aio_ctxs, aio_context)) {
> --
> 2.5.0
>
>
Reviewed-by: Fam Zheng <address@hidden>