All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@ucw.cz>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Andi Kleen <ak@suse.de>, LKML <linux-kernel@vger.kernel.org>,
	pm list <linux-pm@lists.linux-foundation.org>
Subject: Re: [RFC][PATCH -mm 4/4] Hibernation: Use temporary page tables for kernel text mapping on x86_64
Date: Fri, 24 Aug 2007 10:31:01 +0200	[thread overview]
Message-ID: <20070824083101.GC2175@elf.ucw.cz> (raw)
In-Reply-To: <200708221816.05846.rjw@sisk.pl>

On Wed 2007-08-22 18:16:05, Rafael J. Wysocki wrote:
> On Wednesday, 22 August 2007 10:29, 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.
> > 
> > 
> > > @@ -190,25 +190,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) {
> > > +		unsigned long pe;
> > > +
> > > +		pe = __PAGE_KERNEL_LARGE_EXEC | _PAGE_GLOBAL | paddr;
> > > +		pe &= __supported_pte_mask;
> > > +		set_pmd(pmd, __pmd(pe));
> > > +	}
> > > +
> > > +	return 0;
> > > +}
> > > +
> > >  static int set_up_temporary_mappings(void)
> > >  {
> > >  	unsigned long start, end, next;
> > > +	pud_t *pud;
> > >  	int error;
> > >  
> > >  	temp_level4_pgt = (pgd_t *)get_safe_page(GFP_ATOMIC);
> > >  	if (!temp_level4_pgt)
> > >  		return -ENOMEM;
> > >  
> > > -	/* It is safe to reuse the original kernel mapping */
> > > -	set_pgd(temp_level4_pgt + pgd_index(__START_KERNEL_map),
> > > -		init_level4_pgt[pgd_index(__START_KERNEL_map)]);
> > > -
> > >  	/* Set up the direct mapping from scratch */
> > >  	start = (unsigned long)pfn_to_kaddr(0);
> > >  	end = (unsigned long)pfn_to_kaddr(end_pfn);
> > >  
> > >  	for (; start < end; start = next) {
> > > -		pud_t *pud = (pud_t *)get_safe_page(GFP_ATOMIC);
> > > +		pud = (pud_t *)get_safe_page(GFP_ATOMIC);
> > >  		if (!pud)
> > >  			return -ENOMEM;
> > 
> > I believe we leak temp_level4_pgt here.
> > 
> > > +	/* Set up the kernel text mapping from scratch */
> > > +	pud = (pud_t *)get_safe_page(GFP_ATOMIC);
> > > +	if (!pud)
> > > +		return -ENOMEM;
> > 
> > ...and some more memory here :-(. 
> 
> No, these pages will be freed by swsusp_free(), thanks to the get_safe_page().
> 
> I'm not _that_ careless. ;-)

Ok, ACK.


-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

  parent reply	other threads:[~2007-08-24 21:01 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-08-22  8:15 [RFC][PATCH -mm 0/4] Hibernation: Arbitrary boot kernel support on x86_64 Rafael J. Wysocki
2007-08-22  8:17 ` [RFC][PATCH -mm 1/4] Hibernation: Arbitrary boot kernel support - generic code Rafael J. Wysocki
2007-08-22  8:17 ` Rafael J. Wysocki
2007-08-22  8:25   ` Pavel Machek
2007-08-22  8:25   ` Pavel Machek
2007-08-22  8:19 ` [RFC][PATCH -mm 2/4] Hibernation: Arbitrary boot kernel support on x86_64 Rafael J. Wysocki
2007-08-22  8:19   ` Rafael J. Wysocki
2007-08-22  8:26   ` Pavel Machek
2007-08-22  8:26   ` Pavel Machek
2007-08-22  8:20 ` [RFC][PATCH -mm 3/4] Hibernation: Pass CR3 in the image header " Rafael J. Wysocki
2007-08-22  8:28   ` Pavel Machek
2007-08-22 16:17     ` Rafael J. Wysocki
2007-08-22 20:49       ` Rafael J. Wysocki
2007-08-22 20:49       ` [linux-pm] " Rafael J. Wysocki
2007-08-24  9:02         ` Pavel Machek
2007-08-24 21:24           ` Rafael J. Wysocki
2007-08-24 21:24           ` Rafael J. Wysocki
2007-08-24  9:02         ` Pavel Machek
2007-08-22 16:17     ` Rafael J. Wysocki
2007-08-22  8:28   ` Pavel Machek
2007-08-22  8:20 ` Rafael J. Wysocki
2007-08-22  8:21 ` [RFC][PATCH -mm 4/4] Hibernation: Use temporary page tables for kernel text mapping " Rafael J. Wysocki
2007-08-22  8:21 ` Rafael J. Wysocki
2007-08-22  8:29   ` Pavel Machek
2007-08-22  8:29   ` Pavel Machek
2007-08-22 16:16     ` Rafael J. Wysocki
2007-08-24  8:31       ` Pavel Machek
2007-08-24  8:31       ` Pavel Machek [this message]
2007-08-22 16:16     ` 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=20070824083101.GC2175@elf.ucw.cz \
    --to=pavel@ucw.cz \
    --cc=ak@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@lists.linux-foundation.org \
    --cc=rjw@sisk.pl \
    /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.