From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [PATCH] xen: arm: don't release modules which aren't in RAM into the heap Date: Thu, 24 Jul 2014 11:40:49 +0100 Message-ID: <53D0E2B1.2040708@linaro.org> References: <0dddfee6c0817bd548ed4f8c69d7032455eec5a9.1406133930.git.ian.campbell@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <0dddfee6c0817bd548ed4f8c69d7032455eec5a9.1406133930.git.ian.campbell@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Campbell , xen-devel@lists.xen.org Cc: Roy Franz , tim@xen.org, Fu Wei , stefano.stabellini@eu.citrix.com List-Id: xen-devel@lists.xenproject.org Hi Ian, On 23/07/14 17:45, Ian Campbell wrote: > They might be in e.g. flash or something but more likely they could > bein a bank of RAM which we aren't handling or in RAM which the being? > bootloader hasn't told us about for some reason. > > Signed-off-by: Ian Campbell > Cc: Fu Wei > Cc: Roy Franz > --- > xen/arch/arm/setup.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c > index e53e491..446b4dc 100644 > --- a/xen/arch/arm/setup.c > +++ b/xen/arch/arm/setup.c > @@ -247,8 +247,13 @@ void __init discard_initial_modules(void) > paddr_t s = mi->module[i].start; > paddr_t e = s + PAGE_ALIGN(mi->module[i].size); > > - if ( mi->module[i].kind != BOOTMOD_XEN ) > - dt_unreserved_regions(s, e, init_domheap_pages, 0); > + if ( mi->module[i].kind == BOOTMOD_XEN ) > + continue; > + > + if ( !mfn_valid(paddr_to_pfn(s)) || !mfn_valid(paddr_to_pfn(e))) > + continue; What happen if the bootloader decide to put the module between 2 banks and having the hole in the middle. Such as: start of the module end of bank 0 hole start of bank 1 end of the module Regards, -- Julien Grall