qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [v2][Qemu-ppc][PATCH 1/1] PPC: e500: correct params->ra


From: Alexander Graf
Subject: Re: [Qemu-devel] [v2][Qemu-ppc][PATCH 1/1] PPC: e500: correct params->ram_size with ram_size
Date: Thu, 2 May 2013 13:17:41 +0200

On 02.05.2013, at 03:22, Tiejun Chen wrote:

> We should sync params->ram_size after we fixup memory size on
> a alignment boundary. Otherwise Guest would exceed the actual
> memory region.
> 
> Signed-off-by: Tiejun Chen <address@hidden>

Thanks, applied to ppc-next.

Alex

> ---
> v2: 
> 
> eliminate that original comment in v1.
> 
> hw/ppc/e500.c |    1 +
> 1 file changed, 1 insertion(+)
> 
> diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
> index c1bdb6b..3978f84 100644
> --- a/hw/ppc/e500.c
> +++ b/hw/ppc/e500.c
> @@ -523,6 +523,7 @@ void ppce500_init(PPCE500Params *params)
> 
>     /* Fixup Memory size on a alignment boundary */
>     ram_size &= ~(RAM_SIZES_ALIGN - 1);
> +    params->ram_size = ram_size;
> 
>     /* Register Memory */
>     memory_region_init_ram(ram, "mpc8544ds.ram", ram_size);
> -- 
> 1.7.9.5
> 




reply via email to

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