mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: "Huang, Ying" <ying.huang@intel.com>
Cc: Ian Campbell <ijc@hellion.org.uk>, Matt Mackall <mpm@selenic.com>,
	Sam Ravnborg <sam@ravnborg.org>,
	Linux Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: arch/x86/mm/ioremap unification grew by 10x
Date: Mon, 18 Feb 2008 04:17:17 +0100	[thread overview]
Message-ID: <20080218031717.GF30201@elte.hu> (raw)
In-Reply-To: <1203297370.27509.4.camel@caritas-dev.intel.com>


* Huang, Ying <ying.huang@intel.com> wrote:

> > > And here's most of the cause:
> > > 
> > > 000002b8 00000124 T early_ioremap
> > > 00001000 00001000 t bm_pte
> > > 00002000 00000004 T early_ioremap_debug
> > > 
> > > static __initdata pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)]
> > > 				__attribute__((aligned(PAGE_SIZE)));
> > > 
> > > Double ouch. First, this isn't in BSS. Second, even though it's
> > > initdata, the alignment slop won't get recovered.
> > 
> > 551889a6e2a24a9c06fd453ea03b57b7746ffdc0 (the reason you CC'd me) only
> > changed this from unsigned long[1024] to pte_t[PAGE_SIZE/sizeof(pte_t)]
> > 
> > -static __initdata unsigned long bm_pte[1024]
> > +static __initdata pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)]
> >                                 __attribute__((aligned(PAGE_SIZE)));
> > 
> > I don't think that would have changed anything in this respect. It seems
> > to have been that way since 0947b2f31ca1ea1211d3cde2dbd8fcec579ef395
> > when it was added (Huang Ying CC'd).
> > 
> > > Don't we have a special section for page-aligned crap so it doesn't
> > > waste most of two pages?
> > 
> > We have .bss.page_aligned and it seems appropriate to use it.
> 
> But .bss.page_aligned is not an init section, this will waste some 
> memory after boot. Do you think that it is more appropriate to add 
> another section like .init.bss and .init.bss.page_aligned.

agreed, and i'd suggest we do so before this information gets forgotten 
and someone has to re-discover the fix the hard way.

	Ingo

      reply	other threads:[~2008-02-18  3:17 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-15 20:25 Matt Mackall
2008-02-15 20:32 ` Sam Ravnborg
2008-02-15 21:21   ` Matt Mackall
2008-02-15 23:17     ` Matt Mackall
2008-02-17 19:09       ` Ian Campbell
2008-02-17 19:28         ` Sam Ravnborg
2008-02-17 19:50           ` Ingo Molnar
2008-02-18  1:16         ` Huang, Ying
2008-02-18  3:17           ` Ingo Molnar [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=20080218031717.GF30201@elte.hu \
    --to=mingo@elte.hu \
    --cc=ijc@hellion.org.uk \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mpm@selenic.com \
    --cc=sam@ravnborg.org \
    --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

Powered by JetHome