qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/2] IDE: Do not flush empty CDROM drives


From: Eric Blake
Subject: Re: [Qemu-devel] [PATCH 1/2] IDE: Do not flush empty CDROM drives
Date: Wed, 9 Aug 2017 15:39:25 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 08/09/2017 11:02 AM, Stefan Hajnoczi wrote:
> The block backend changed in a way that flushing empty CDROM drives now
> crashes.  Amend IDE to avoid doing so until the root problem can be
> addressed for 2.11.
> 
> Original patch by John Snow <address@hidden>.
> 
> Reported-by: Kieron Shorrock <address@hidden>
> Signed-off-by: Stefan Hajnoczi <address@hidden>
> ---
>  hw/ide/core.c | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)

Reviewed-by: Eric Blake <address@hidden>

> 
> diff --git a/hw/ide/core.c b/hw/ide/core.c
> index 0b48b64d3a..bea39536b0 100644
> --- a/hw/ide/core.c
> +++ b/hw/ide/core.c
> @@ -1063,7 +1063,15 @@ static void ide_flush_cache(IDEState *s)
>      s->status |= BUSY_STAT;
>      ide_set_retry(s);
>      block_acct_start(blk_get_stats(s->blk), &s->acct, 0, BLOCK_ACCT_FLUSH);
> -    s->pio_aiocb = blk_aio_flush(s->blk, ide_flush_cb, s);
> +
> +    if (blk_bs(s->blk)) {
> +        s->pio_aiocb = blk_aio_flush(s->blk, ide_flush_cb, s);
> +    } else {
> +        /* XXX blk_aio_flush() crashes when blk_bs(blk) is NULL, remove this
> +         * temporary workaround when blk_aio_*() functions handle NULL 
> blk_bs.
> +         */
> +        ide_flush_cb(s, 0);
> +    }
>  }
>  
>  static void ide_cfata_metadata_inquiry(IDEState *s)
> 

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]