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

[Xen-devel] Re: [PATCH 2/4] x86,xen: introduce x86_init.mapping.pagetable_reserve



On Tue, 12 Apr 2011, Yinghai Lu wrote:
> > diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
> > index 6b833db..fec8680 100644
> > --- a/arch/x86/xen/mmu.c
> > +++ b/arch/x86/xen/mmu.c
> > @@ -1275,6 +1275,20 @@ static __init void xen_pagetable_setup_start(pgd_t 
> > *base)
> >   {
> >   }
> >
> > +static __init void xen_mapping_pagetable_reserve(u64 start, u64 end)
> > +{
> > +   /* reserve the range used */
> > +   memblock_x86_reserve_range(start, end, "PGTABLE");
> > +
> > +   /* set as RW the rest */
> > +   printk(KERN_DEBUG "xen: setting RW the range %llx - %llx\n", end,
> > +                   PFN_PHYS(pgt_buf_top));
> > +   while (end<  PFN_PHYS(pgt_buf_top)) {
> > +           make_lowmem_page_readwrite(__va(end));
> > +           end += PAGE_SIZE;
> > +   }
> > +}
> > +
> 
> it would be more cleaner to xen code if you make mark start/end to RO, and 
> not make them all before as RO.

Yes, that would be ideal, but we cannot do that because we don't know
exactly where is pgt_buf_end before allocating the pagetable pages and
the pagetable pages need to be marked RO before being hooked into the
pagetable. This is why we mark the whole range RO and after the
pagetable allocation when we know for sure where is pgt_buf_end we
modify the range pgt_buf_end-pgt_buf_top to RW.

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.