From: Andrew Morton <akpm@osdl.org>
To: Neil Brown <neilb@cse.unsw.edu.au>
Cc: mingo@elte.hu, linux-kernel@vger.kernel.org
Subject: Re: 2.6.4-mm1 - 4g patch breaks when X86_4G not selected
Date: Mon, 15 Mar 2004 20:52:01 -0800 [thread overview]
Message-ID: <20040315205201.7699e1c1.akpm@osdl.org> (raw)
In-Reply-To: <16470.22982.831048.924954@notabene.cse.unsw.edu.au>
Neil Brown <neilb@cse.unsw.edu.au> wrote:
>
> Thanks for the pointer. I now have something useful to report.
>
> start_kernel calls setup_arch
> which calls paging_init
> which calls pagetable_init
> which calls setup_identity_mappings
> which calls page_address
>
> If I put
> asm("push %eax; movb $0x3,%al; outb %al,$0x61; popl %eax\n");
> before the call to page_address, and
> asm("push %eax; movb $0x0,%al; outb %al,$0x61; popl %eax\n");
> afterwards, then I get a tone after boot, suggesting that page_address
> isn't returning.
>
> I'm guessing that the problem is:
>
> page_address calls
> spin_lock_irqsave(&pas->lock, flags);
>
> but the spinlock isn't initialised by page_address_init
> until much later in start_kernel.
That is useful, thanks. Sorry about the hassle.
Calling page_address_init() earlier isn't the fix though - pmd pages aren't
in highmem so we should never have got that far. Looks like the pgd or the
pmd page contains garbage. Did you try it without CONFIG_DEBUG_SLAB?
Nick was seeing slab 0x6b patterns on the NUMAQ, inside the pmd, so there's
some consistency there. We do have one early setup fix from Manfred, but
it's unlikely to cure this.
I'll have a play with your .config, see if I can reproduce it. If not I'll
squeeze off -mm3 and would ask you to retest on that if poss.
next prev parent reply other threads:[~2004-03-16 4:52 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-03-11 7:31 2.6.4-mm1 Andrew Morton
2004-03-11 8:26 ` 2.6.4-mm1 Jens Axboe
2004-03-11 8:30 ` 2.6.4-mm1 Andrew Morton
2004-03-11 9:34 ` 2.6.4-mm1 Matthias Urlichs
2004-03-11 9:17 ` 2.6.4-mm1 Mickael Marchand
2004-03-11 11:06 ` 2.6.4-mm1 Andrew Morton
2004-03-11 11:22 ` 2.6.4-mm1 Anton Blanchard
2004-03-11 12:23 ` 2.6.4-mm1 Mickael Marchand
2004-03-11 13:40 ` 2.6.4-mm1 jlnance
2004-03-11 19:25 ` 2.6.4-mm1 Mike Fedyk
2004-03-11 22:22 ` 2.6.4-mm1 Andrew Morton
2004-03-11 13:49 ` 2.6.4-mm1 Anton Blanchard
2004-03-11 23:29 ` 2.6.4-mm1 Nick Piggin
2004-03-12 2:03 ` 2.6.4-mm1 Nick Piggin
2004-03-12 2:12 ` 2.6.4-mm1 Anton Blanchard
2004-03-12 5:11 ` 2.6.4-mm1 Anton Blanchard
2004-03-11 13:52 ` 2.6.4-mm1 Anton Blanchard
2004-03-11 15:23 ` 2.6.4-mm1 William Lee Irwin III
2004-03-11 15:54 ` 2.6.4-mm1 William Lee Irwin III
2004-03-11 17:06 ` 2.6.4-mm1 Redeeman
2004-03-11 17:53 ` 2.6.4-mm1 Norberto Bensa
2004-03-11 18:09 ` 2.6.4-mm1 Andrew Morton
2004-03-11 18:14 ` 2.6.4-mm1 Redeeman
2004-03-11 18:46 ` 2.6.4-mm1 Andrew Morton
2004-03-11 20:58 ` 2.6.4-mm1 Redeeman
2004-03-11 21:10 ` 2.6.4-mm1 Redeeman
2004-03-11 18:22 ` 2.6.4-mm1 Norberto Bensa
2004-03-11 20:29 ` 2.6.4-mm1 Felipe Alfaro Solana
2004-03-11 17:56 ` 2.6.4-mm1 boot Richard A Nelson
2004-03-12 20:08 ` swsusp (Re: 2.6.4-mm1 boot) Pavel Machek
2004-03-11 20:23 ` 2.6.4-mm1: modular quota needs unknown symbol Adrian Bunk
2004-03-12 8:51 ` Marc-Christian Petersen
2004-03-15 11:02 ` Jan Kara
2004-03-11 20:31 ` 2.6.4-mm1: unknown symbols cauased by remove-more-KERNEL_SYSCALLS.patch Adrian Bunk
2004-03-12 9:14 ` Arnd Bergmann
2004-03-12 9:29 ` Andrew Morton
2004-03-12 9:35 ` Arnd Bergmann
2004-03-12 9:48 ` Andrew Morton
2004-03-12 10:08 ` Dave Jones
2004-03-13 20:25 ` Francois Romieu
2004-03-12 10:11 ` Arjan van de Ven
2004-03-12 19:42 ` 2.6.4-mm1: unknown symbols cauased byremove-more-KERNEL_SYSCALLS.patch Adrian Bunk
2004-03-12 19:45 ` Arjan van de Ven
2004-03-12 1:03 ` 2.6.4-mm1 Neil Brown
2004-03-12 1:22 ` 2.6.4-mm1 Andrew Morton
2004-03-12 5:48 ` 2.6.4-mm1 Neil Brown
2004-03-12 7:50 ` 2.6.4-mm1 Andrew Morton
2004-03-13 10:25 ` 2.6.4-mm1 Neil Brown
2004-03-15 1:46 ` 2.6.4-mm1 - 4g patch breaks when X86_4G not selected Neil Brown
2004-03-15 8:09 ` Ingo Molnar
2004-03-15 22:19 ` Zwane Mwaikambo
2004-03-15 22:41 ` Andrew Morton
2004-03-15 9:19 ` Ingo Molnar
2004-03-16 1:35 ` Neil Brown
2004-03-16 4:52 ` Andrew Morton [this message]
2004-03-16 5:03 ` Neil Brown
2004-03-16 7:23 ` Ingo Molnar
2004-03-16 7:28 ` Andrew Morton
2004-03-16 7:24 ` Ingo Molnar
2004-04-04 9:07 ` [PATCH][2.6-mm] setup_identity_mappings depends on zone init Zwane Mwaikambo
2004-04-04 9:27 ` William Lee Irwin III
2004-03-12 9:04 ` 2.6.4-mm1 Helge Hafting
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=20040315205201.7699e1c1.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=neilb@cse.unsw.edu.au \
/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®