From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Jan Beulich <JBeulich@suse.com>,
xen-devel <xen-devel@lists.xenproject.org>
Cc: Ross Lagerwall <ross.lagerwall@citrix.com>, Keir Fraser <keir@xen.org>
Subject: Re: [PATCH] x86/EFI: keep EFI runtime services top level page tables up-to-date
Date: Mon, 18 May 2015 11:27:43 +0100 [thread overview]
Message-ID: <5559BE9F.9020107@citrix.com> (raw)
In-Reply-To: <5559D999020000780007AFD3@mail.emea.novell.com>
On 18/05/15 11:22, Jan Beulich wrote:
> Updates to idle_pg_table[] need to be mirrored into the page tables
> used for invoking EFI runtime services.
>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
> ---
> This in particular is a prereq for the patch at
> http://lists.xenproject.org/archives/html/xen-devel/2015-05/msg02125.html
> to be correct.
>
> --- a/xen/arch/x86/efi/runtime.h
> +++ b/xen/arch/x86/efi/runtime.h
> @@ -2,4 +2,10 @@
>
> #ifndef COMPAT
> l4_pgentry_t *__read_mostly efi_l4_pgtable;
> +
> +void efi_update_l4_pgtable(unsigned int l4idx, l4_pgentry_t l4e)
> +{
> + if ( efi_l4_pgtable )
> + l4e_write(efi_l4_pgtable + l4idx, l4e);
> +}
> #endif
> --- a/xen/arch/x86/efi/stub.c
> +++ b/xen/arch/x86/efi/stub.c
> @@ -2,6 +2,7 @@
> #include <xen/errno.h>
> #include <xen/init.h>
> #include <xen/lib.h>
> +#include <asm/page.h>
>
> #ifndef efi_enabled
> const bool_t efi_enabled = 0;
> @@ -9,6 +10,8 @@ const bool_t efi_enabled = 0;
>
> void __init efi_init_memory(void) { }
>
> +void efi_update_l4_pgtable(unsigned int l4idx, l4_pgentry_t l4e) { }
> +
> paddr_t efi_rs_page_table(void)
> {
> BUG();
> --- a/xen/arch/x86/mm.c
> +++ b/xen/arch/x86/mm.c
> @@ -5311,7 +5311,10 @@ static l3_pgentry_t *virt_to_xen_l3e(uns
> spin_lock(&map_pgdir_lock);
> if ( !(l4e_get_flags(*pl4e) & _PAGE_PRESENT) )
> {
> - l4e_write(pl4e, l4e_from_paddr(__pa(pl3e), __PAGE_HYPERVISOR));
> + l4_pgentry_t l4e = l4e_from_paddr(__pa(pl3e), __PAGE_HYPERVISOR);
> +
> + l4e_write(pl4e, l4e);
> + efi_update_l4_pgtable(l4_table_offset(v), l4e);
> pl3e = NULL;
> }
> if ( locking )
> --- a/xen/include/asm-x86/page.h
> +++ b/xen/include/asm-x86/page.h
> @@ -288,6 +288,7 @@ extern l2_pgentry_t l2_identmap[4*L2_PAG
> extern l1_pgentry_t l1_identmap[L1_PAGETABLE_ENTRIES],
> l1_fixmap[L1_PAGETABLE_ENTRIES];
> void paging_init(void);
> +void efi_update_l4_pgtable(unsigned int l4idx, l4_pgentry_t);
> #endif /* !defined(__ASSEMBLY__) */
>
> #define _PAGE_NONE _AC(0x000,U)
>
>
>
prev parent reply other threads:[~2015-05-18 12:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-18 10:22 [PATCH] x86/EFI: keep EFI runtime services top level page tables up-to-date Jan Beulich
2015-05-18 10:27 ` Andrew Cooper [this message]
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=5559BE9F.9020107@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=keir@xen.org \
--cc=ross.lagerwall@citrix.com \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.