From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Thibault Subject: Re: [PATCH] incorrect xfree for mini-os Date: Wed, 2 Apr 2008 11:52:48 +0100 Message-ID: <20080402105248.GE4618@implementation.uk.xensource.com> References: <47F36351.4040106@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Content-Disposition: inline In-Reply-To: <47F36351.4040106@jp.fujitsu.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: INAKOSHI Hiroya Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org INAKOSHI Hiroya, le Wed 02 Apr 2008 19:43:29 +0900, a écrit : > xfree in extras/mini-os/lib/xmalloc.c is incorrect. > > It has to check first if the memory to free is so big as to be freed > directly by free_pages. > > mini-os domains crash without this patch if they don't configure vfb > correctly. > > Signed-off-by: INAKOSHI Hiroya Acked-by: Samuel Thibault > diff -r db943e8d1051 extras/mini-os/lib/xmalloc.c > --- a/extras/mini-os/lib/xmalloc.c Tue Apr 01 10:09:33 2008 +0100 > +++ b/extras/mini-os/lib/xmalloc.c Wed Apr 02 19:34:40 2008 +0900 > @@ -208,6 +208,13 @@ void xfree(const void *p) > pad = (struct xmalloc_pad *)p - 1; > hdr = (struct xmalloc_hdr *)((char *)p - pad->hdr_size); > > + /* Big allocs free directly. */ > + if ( hdr->size >= PAGE_SIZE ) > + { > + free_pages(hdr, get_order(hdr->size)); > + return; > + } > + > /* We know hdr will be on same page. */ > if(((long)p & PAGE_MASK) != ((long)hdr & PAGE_MASK)) > { > @@ -220,13 +227,6 @@ void xfree(const void *p) > { > printk("Should not be previously freed\n"); > *(int*)0=0; > - } > - > - /* Big allocs free directly. */ > - if ( hdr->size >= PAGE_SIZE ) > - { > - free_pages(hdr, get_order(hdr->size)); > - return; > } > > /* Merge with other free block, or put in list. */ > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel -- Samuel * x remarque qu'avec un peu de volonté, on peut faire du code de porc dans d'importe quel langage Turing-complet -+- x sur #ens-mim - codons porc -+-