mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "huang ying" <huang.ying.caritas@gmail.com>
To: "Yinghai Lu" <yhlu.kernel@gmail.com>
Cc: "Ingo Molnar" <mingo@elte.hu>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	"Huang Ying" <ying.huang@intel.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH] x86: make 64bit efi to use ioremap_cache for efi_ioremap
Date: Sat, 4 Oct 2008 17:35:56 +0800	[thread overview]
Message-ID: <851fc09e0810040235g2ab97bdai612c0a2829f83f5c@mail.gmail.com> (raw)
In-Reply-To: <1223101400-8819-1-git-send-email-yhlu.kernel@gmail.com>

Hi, Yinghai,

On Sat, Oct 4, 2008 at 2:23 PM, Yinghai Lu <yhlu.kernel@gmail.com> wrote:
[...]
> --- linux-2.6.orig/arch/x86/kernel/efi.c
> +++ linux-2.6/arch/x86/kernel/efi.c
> @@ -475,10 +475,7 @@ void __init efi_enter_virtual_mode(void)
>                size = md->num_pages << EFI_PAGE_SHIFT;
>                end = md->phys_addr + size;
>
> -               if (PFN_UP(end) <= max_low_pfn_mapped)
> -                       va = __va(md->phys_addr);
> -               else
> -                       va = efi_ioremap(md->phys_addr, size);
> +               va = efi_ioremap(md->phys_addr, size);

Using __va and efi_ioremap() here is to make EFI support compatible
with kexec. Because EFI provide only efi_enter_virtual_mode(), no
efi_leave_virtual_mode(), we should make EFI runtime memory area
mapped to same virtual memory area in original kernel and kexeced
kernel, so that the EFI runtime services can be used in kexeced
kernel.

[...]
> --- linux-2.6.orig/arch/x86/kernel/efi_64.c
> +++ linux-2.6/arch/x86/kernel/efi_64.c
> @@ -46,8 +46,8 @@ static void __init early_mapping_set_exe
>  {
>        unsigned long num_pages;
>
> -       start &= PMD_MASK;
> -       end = (end + PMD_SIZE - 1) & PMD_MASK;
> +       start &= PAGE_MASK;
> +       end = (end + PAGE_SIZE - 1) & PAGE_MASK;
>        num_pages = (end - start) >> PAGE_SHIFT;
>        if (executable)
>                set_memory_x((unsigned long)__va(start), num_pages);

early_mapping_set_exe() may be called before page allocator is
available. Using PAGE_MASK may make set_memory_x() allocate new page,
while using PMD_MASK will not.

Best Regards,
Huang Ying

  parent reply	other threads:[~2008-10-04  9:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-04  6:23 Yinghai Lu
2008-10-04  8:46 ` Ingo Molnar
2008-10-04  9:35 ` huang ying [this message]
2008-10-04 17:44   ` Yinghai Lu
2008-10-05  8:56     ` huang ying
2008-10-05 10:04       ` Ingo Molnar
2008-10-06  1:47         ` Huang Ying
2008-10-05 18:04       ` Yinghai Lu
2008-10-06  1:50         ` Huang Ying
2008-12-11 20:41 Jonathan Barkelew

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=851fc09e0810040235g2ab97bdai612c0a2829f83f5c@mail.gmail.com \
    --to=huang.ying.caritas@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=tglx@linutronix.de \
    --cc=yhlu.kernel@gmail.com \
    --cc=ying.huang@intel.com \
    /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

all inboxes | Powered by JetHome®