WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] Comment & code inconsistency?

To: "Tian, Kevin" <kevin.tian@xxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: Re: [Xen-devel] Comment & code inconsistency?
From: "陈诚" <concretechen@xxxxxxxxx>
Date: Tue, 20 Nov 2007 10:20:23 +0800
Delivery-date: Mon, 19 Nov 2007 18:21:00 -0800
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=brME0Ct/3x+qNRL7rkUIttGsJA6MlskI6oYxPiJMoyU=; b=QCM+T9J5hJkfzC9kGbhQTQLPRoeFY+3VraVnLbLhVkKaDjj5D9Re2NOQ86IIq3QeA9odHvZRNZ8ghdxzrawem15lkOfqxZw7/NO23UpblhyxSoJWLgaScGsZY5W3Kx6BKkZhiBKF9Za/p+92bN9Dg2jBNhyLOkcOwvJyekRwzts=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=HRN0j1u3eyK5c2x5x2Uzr9DobxjUCHCsiyoYHQRH2PwZYdHU+hVE/Ej70yQmjkIo+E1eaB/lrlD73fRZ711/b6R2Yl+yvQbB82kk9AmNj0dhCHUZHG62uTLDVdJsZiAaTsVTLyP5qfNFBwiVimkJcd0cTSTIURgFiHCFhP1JvCI=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
In-reply-to: <D470B4E54465E3469E2ABBC5AFAC390F024D8C64@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <8cad9e040711180620w23c4da2fv2843e7f1f61f5b88@xxxxxxxxxxxxxx> <D470B4E54465E3469E2ABBC5AFAC390F024D8C64@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx


2007/11/19, Tian, Kevin <kevin.tian@xxxxxxxxx>:
>From: 陈诚
>Sent: 2007年11月18日 22:20
>
>Hi all,
>    in arch_init_memory() we have the following code:
>
>    ...
>
>    /* Any areas not specified as RAM by the e820 map are
>considered I/O. */
>    for ( i = 0, pfn = 0; pfn < max_page; i++ )
>    {
>        while ( (i < e820.nr_map) && (e820.map[i].type != E820_RAM) )
>            i++;
>
>        if ( i >= e820.nr_map )
>        {
>            /* No more RAM regions: mark as I/O right to end
>of memory map. */
>            rstart_pfn = rend_pfn = max_page;
>        }
>        else
>        {
>            /* Mark as I/O just up as far as next RAM region. */
>            rstart_pfn = min_t(unsigned long, max_page,
>                               PFN_UP(e820.map[i].addr));
>            rend_pfn   = max_t(unsigned long, rstart_pfn,
>                               PFN_DOWN(e820.map[i].addr +
>e820.map[i].size));
>        }
>
>        /* Mark as I/O up to next RAM region. */
>        for ( ; pfn < rstart_pfn; pfn++ )
>        {
>            BUG_ON(!mfn_valid(pfn));
>            share_xen_page_with_guest(
>                mfn_to_page(pfn), dom_io, XENSHARE_writable);
>        }
>
>        /* Skip the RAM region. */
>        pfn = rend_pfn;
>    }
>
>    ...
>
>    it seems that the while loop skips all the areas that are not
>specified as RAM and the areas which are specified as RAM are
>considered I/O, which contradicts with the comment, or do I
>misunderstand this piece of code?
>

It matches. Above code just adds frames from end of last RAM entry
to start of next RAM entry. Not all non-RAM ranges are described in
E820 table, which is why you need instead anchor RAM entries and
get the reverse.

Thanks,
Kevin

I see it, thank you.
 
Cheers
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>