Il 18/12/2013 19:42, Marcelo Tosatti ha scritto:
> 
> Fix off-by-one error (noticed by Andrea Arcangeli).
> 
> Signed-off-by: Marcelo Tosatti <[email protected]>
> 
> diff --git a/exec.c b/exec.c
> index f4b9ef2..1be5252 100644
> --- a/exec.c
> +++ b/exec.c
> @@ -1000,7 +1000,7 @@ static void *file_ram_alloc(RAMBlock *block,
>          }
>  
>          /* MAP_POPULATE silently ignores failures */
> -        for (i = 0; i < (memory/hpagesize)-1; i++) {
> +        for (i = 0; i < (memory/hpagesize); i++) {
>              memset(area + (hpagesize*i), 0, 1);
>          }
>  
> 

Reviewed-by: Paolo Bonzini <[email protected]>
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to