From: Samuel Thibault <samuel.thibault@ens-lyon.org>
To: Juergen Gross <jgross@suse.com>
Cc: wei.liu2@citrix.com, xen-devel@lists.xen.org,
ian.jackson@eu.citrix.com, Ian.Campbell@citrix.com,
stefano.stabellini@eu.citrix.com
Subject: Re: [PATCH v2] minios: don't rely on specific page table allocation scheme
Date: Fri, 20 Nov 2015 15:35:20 +0100 [thread overview]
Message-ID: <20151120143520.GM3905@var.bordeaux.inria.fr> (raw)
In-Reply-To: <1448027577-23963-1-git-send-email-jgross@suse.com>
Hello,
Juergen Gross, on Fri 20 Nov 2015 14:52:57 +0100, wrote:
> Today mini-os is making assumptions how the page tables it is started
> with are being allocated. Especially it is using the number of page
> table frames to calculate which is the first unmapped pfn.
>
> Instead of relying on page table number assumptions just look into the
> page tables to find the first pfn not already mapped.
I agree on the principle
> @@ -200,8 +145,8 @@ static void build_pagetable(unsigned long *start_pfn, unsigned long *max_pfn)
> int count = 0;
> int rc;
>
> - pfn_to_map =
> - (start_info.nr_pt_frames - NOT_L1_FRAMES) * L1_PAGETABLE_ENTRIES;
> + pfn_to_map = (*start_pfn + L1_PAGETABLE_ENTRIES - 1) &
> + ~(L1_PAGETABLE_ENTRIES - 1);
Why aligning up on L1_PAGETABLE_ENTRIES. Because Xen always maps
a whole L1 pt frame? I'd say just assume even less by just taking
*start_pfn. Yes, it's a (small) waste, but it makes the code less
obscure. What do you think Wei?
> @@ -229,9 +174,8 @@ static void build_pagetable(unsigned long *start_pfn, unsigned long *max_pfn)
> #if defined(__x86_64__)
> offset = l4_table_offset(start_address);
> /* Need new L3 pt frame */
> - if ( !(start_address & L3_MASK) )
> - if ( need_pt_frame(start_address, L3_FRAME) )
> - new_pt_frame(&pt_pfn, pt_mfn, offset, L3_FRAME);
> + if ( !(tab[offset] & _PAGE_PRESENT) )
> + new_pt_frame(&pt_pfn, pt_mfn, offset, L3_FRAME);
It replaces a test on the address with systematically reading the tab,
but that tab will most probably be in the L1d cache, so not much more
costly than the test while getting more readable code.
> pt_mfn = pte_to_mfn(page);
> tab = to_virt(mfn_to_pfn(pt_mfn) << PAGE_SHIFT);
> offset = l2_table_offset(start_address);
> /* Need new L1 pt frame */
> - if ( !(start_address & L1_MASK) )
> - if ( need_pt_frame(start_address, L1_FRAME) )
> - new_pt_frame(&pt_pfn, pt_mfn, offset, L1_FRAME);
> + if ( !(tab[offset] & _PAGE_PRESENT) )
> + new_pt_frame(&pt_pfn, pt_mfn, offset, L1_FRAME);
> + else if ( !(start_address & L1_MASK) )
> + {
> + /* Already mapped, skip this L1 entry. */
Again, I'd say not assume anything here, to keep the code simple at the
expense of a waste. It means instead...
> + start_address += L1_PAGETABLE_ENTRIES << PAGE_SHIFT;
> + pfn_to_map += L1_PAGETABLE_ENTRIES;
> + continue;
> + }
>
> page = tab[offset];
> pt_mfn = pte_to_mfn(page);
tab = to_virt(mfn_to_pfn(pt_mfn) << PAGE_SHIFT);
> offset = l1_table_offset(start_address);
... checking tab[offset] & _PAGE_PRESENT here before adding an MMU update.
In the end that'll make us re-read the whole L1 page tables built by the
domain builder, but this looks cheap enough while being more readable
code and safer to me.
Samuel
next prev parent reply other threads:[~2015-11-20 14:35 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-20 13:52 [PATCH v2] minios: don't rely on specific page table allocation scheme Juergen Gross
2015-11-20 14:09 ` Wei Liu
2015-11-20 14:18 ` Ian Campbell
2015-11-20 14:35 ` Samuel Thibault [this message]
2015-11-20 14:47 ` Juergen Gross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151120143520.GM3905@var.bordeaux.inria.fr \
--to=samuel.thibault@ens-lyon.org \
--cc=Ian.Campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jgross@suse.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).