qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] block: do not probe zero-sized disks


From: Eric Blake
Subject: Re: [Qemu-devel] [PATCH] block: do not probe zero-sized disks
Date: Thu, 10 Jan 2013 10:17:24 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0

On 01/10/2013 07:39 AM, Paolo Bonzini wrote:
> A blank CD or DVD is visible as a zero-sized disks.  Probing such
> disks will lead to an EIO and a failure to start the VM.  Treating
> them as raw is a better solution.
> 
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
>  block.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/block.c b/block.c
> index c05875f..b9da10e 100644
> --- a/block.c
> +++ b/block.c
> @@ -532,7 +532,7 @@ static int find_image_format(const char *filename, 
> BlockDriver **pdrv)
>      }
>  
>      /* Return the raw BlockDriver * to scsi-generic devices or empty drives 
> */
> -    if (bs->sg || !bdrv_is_inserted(bs)) {
> +    if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {

Do we need to extend this to all files with size smaller than the length
of the header used in probing to determine a non-raw file?  Or is the
case of someone passing a 1-byte file as a backing file of a device too
unlikely, where refusing to start the VM is okay for that case?

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

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