qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] block: Round up total_sectors


From: Benoît Canet
Subject: Re: [Qemu-devel] [PATCH] block: Round up total_sectors
Date: Wed, 6 Nov 2013 14:08:39 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

Le Wednesday 06 Nov 2013 à 19:48:06 (+0800), Fam Zheng a écrit :
> Since b94a2610, bdrv_getlength() is omitted when probing image. VMDK
> monolithicFlat is broken by that because a file < 512 bytes can't be
> read with its total_sectors truncated to 0. This patch round up the size
> to BDRV_SECTOR_SIZE, when a image size is not sector aligned.
> 
> Signed-off-by: Fam Zheng <address@hidden>
> ---
>  block.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/block.c b/block.c
> index 58efb5b..f706634 100644
> --- a/block.c
> +++ b/block.c
> @@ -640,7 +640,7 @@ static int refresh_total_sectors(BlockDriverState *bs, 
> int64_t hint)
>          if (length < 0) {
>              return length;
>          }
> -        hint = length >> BDRV_SECTOR_BITS;
> +        hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
>      }
>  
>      bs->total_sectors = hint;
> -- 
> 1.8.3.1
> 
> 

Reviewed-by: Benoit Canet <address@hidden>



reply via email to

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