Re: [Xen-devel] [PATCH v6 12/26] xen/arm: introduce allocate_memory

2018-11-09 Thread Stefano Stabellini
On Fri, 9 Nov 2018, Julien Grall wrote: > Hi Stefano, > > Most of the code is mine, so it is hard to review it :). Although, I have a > few comments below. > > > On 02/11/2018 23:45, Stefano Stabellini wrote: > > Introduce an allocate_memory function able to allocate memory for DomUs > > and map

Re: [Xen-devel] [PATCH v6 12/26] xen/arm: introduce allocate_memory

2018-11-09 Thread Julien Grall
Hi Stefano, Most of the code is mine, so it is hard to review it :). Although, I have a few comments below. On 02/11/2018 23:45, Stefano Stabellini wrote: Introduce an allocate_memory function able to allocate memory for DomUs and map it at the right guest addresses, according to the guest m

[Xen-devel] [PATCH v6 12/26] xen/arm: introduce allocate_memory

2018-11-02 Thread Stefano Stabellini
Introduce an allocate_memory function able to allocate memory for DomUs and map it at the right guest addresses, according to the guest memory map: GUEST_RAM0_BASE and GUEST_RAM1_BASE. This is under #if 0 as not used for now. Signed-off-by: Julien Grall Signed-off-by: Stefano Stabellini --- Cha