From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Pavel Machek <pavel@ucw.cz>
Cc: discuss@x86-64.org, pm list <linux-pm@lists.linux-foundation.org>,
Nigel Cunningham <nigel@nigel.suspend2.net>
Subject: Re: [RFC][PATCH -mm 3/4] Hibernation: Use temporary kernel text mapping during restore on x86_64
Date: Tue, 21 Aug 2007 16:42:26 +0200 [thread overview]
Message-ID: <200708211642.27027.rjw@sisk.pl> (raw)
In-Reply-To: <20070821075904.GG7258@elf.ucw.cz>
On Tuesday, 21 August 2007 09:59, Pavel Machek wrote:
> Hi!
>
> > Use temporary page tables for the kernel text mapping during hibernation restore
> > on x86_64.
> >
> > Without the patch, the original boot kernel's page tables that represent the
> > kernel text mapping are used while the core of the image kernel is being
> > restored. However, in principle, if the boot kernel is not identical to the
> > image kernel, the location of these page tables in the image kernel need not be
> > the same, so we should create a safe copy of the kernel text mapping prior to
> > restoring the core of the image kernel.
> >
> > Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
> > ---
> > arch/x86_64/kernel/suspend.c | 41 ++++++++++++++++++++++++++++++++++-------
> > 1 file changed, 34 insertions(+), 7 deletions(-)
> >
> > Index: linux-2.6.23-rc3/arch/x86_64/kernel/suspend.c
> > ===================================================================
> > --- linux-2.6.23-rc3.orig/arch/x86_64/kernel/suspend.c 2007-08-14 01:06:28.000000000 +0200
> > +++ linux-2.6.23-rc3/arch/x86_64/kernel/suspend.c 2007-08-14 01:06:34.000000000 +0200
> > @@ -175,7 +175,7 @@ static int res_phys_pud_init(pud_t *pud,
> >
> > if (paddr >= end)
> > break;
> > - pe = _PAGE_NX | _PAGE_PSE | _KERNPG_TABLE | paddr;
> > + pe = __PAGE_KERNEL_LARGE | paddr;
> > pe &= __supported_pte_mask;
> > set_pmd(pmd, __pmd(pe));
> > }
> > @@ -183,25 +183,42 @@ static int res_phys_pud_init(pud_t *pud,
> > return 0;
> > }
> >
> > +static int res_kernel_text_pud_init(pud_t *pud, unsigned long start)
> > +{
> > + pmd_t *pmd;
> > + unsigned long paddr;
> > +
> > + pmd = (pmd_t *)get_safe_page(GFP_ATOMIC);
> > + if (!pmd)
> > + return -ENOMEM;
> > + set_pud(pud + pud_index(start), __pud(__pa(pmd) | _KERNPG_TABLE));
> > + for (paddr = 0; paddr < KERNEL_TEXT_SIZE; pmd++, paddr += PMD_SIZE) {
>
> Should we have something like "< max possible kernel size here"?
AFAICS, KERNEL_TEXT_SIZE == "max possible kernel text size". This even is
documented. :-)
Greetings,
Rafael
next prev parent reply other threads:[~2007-08-21 14:42 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-20 13:10 [RFC][PATCH -mm 0/4] Hibernation: Arbitrary boot kernel support on x86_64 Rafael J. Wysocki
2007-08-20 13:11 ` [RFC][PATCH -mm 1/4] " Rafael J. Wysocki
2007-08-21 7:57 ` Pavel Machek
2007-08-21 14:37 ` [discuss] " Rafael J. Wysocki
2007-08-21 19:30 ` Rafael J. Wysocki
2007-08-21 20:47 ` Rafael J. Wysocki
2007-08-20 13:16 ` [RFC][PATCH -mm 2/4] Hibernation: Turn on ACPI during restore if necessary Rafael J. Wysocki
2007-08-21 7:57 ` Pavel Machek
2007-08-21 14:39 ` Rafael J. Wysocki
2007-08-21 23:36 ` Pavel Machek
2007-08-22 20:47 ` [discuss] " Rafael J. Wysocki
2007-08-20 13:17 ` [RFC][PATCH -mm 3/4] Hibernation: Use temporary kernel text mapping during restore on x86_64 Rafael J. Wysocki
2007-08-21 7:59 ` Pavel Machek
2007-08-21 14:42 ` Rafael J. Wysocki [this message]
2007-08-20 13:18 ` [RFC][PATCH -mm 4/4] Hibernation: Pass CR3 value in hibernation header " Rafael J. Wysocki
2007-08-21 8:01 ` Pavel Machek
2007-08-21 14:46 ` Rafael J. Wysocki
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=200708211642.27027.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=discuss@x86-64.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=nigel@nigel.suspend2.net \
--cc=pavel@ucw.cz \
/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.