From: Johannes Weiner <hannes@saeurebad.de>
To: "Yinghai Lu" <yhlu.kernel@gmail.com>
Cc: linux-kernel@vger.kernel.org, "Andi Kleen" <ak@suse.de>,
"Ingo Molnar" <mingo@elte.hu>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Yasunori Goto" <y-goto@jp.fujitsu.com>,
"KAMEZAWA Hiroyuki" <kamezawa.hiroyu@jp.fujitsu.com>,
"Christoph Lameter" <clameter@sgi.com>
Subject: Re: [patch 2/2] bootmem: Node-setup agnostic free_bootmem()
Date: Sun, 13 Apr 2008 12:57:22 +0200 [thread overview]
Message-ID: <87zlry6mzx.fsf@saeurebad.de> (raw)
In-Reply-To: <86802c440804121859x42847c2cx37b8cd909b14c6b5@mail.gmail.com> (Yinghai Lu's message of "Sat, 12 Apr 2008 18:59:56 -0700")
Hi,
"Yinghai Lu" <yhlu.kernel@gmail.com> writes:
> On Sat, Apr 12, 2008 at 3:33 PM, Johannes Weiner <hannes@saeurebad.de> wrote:
>> Make free_bootmem() look up the node holding the specified address
>> range which lets it work transparently on single-node and multi-node
>> configurations.
>>
>> Signed-off-by: Johannes Weiner <hannes@saeurebad.de>
>> CC: Yinghai Lu <yhlu.kernel@gmail.com>
>> CC: Andi Kleen <ak@suse.de>
>> CC: Yasunori Goto <y-goto@jp.fujitsu.com>
>> CC: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
>> CC: Ingo Molnar <mingo@elte.hu>
>> CC: Christoph Lameter <clameter@sgi.com>
>> CC: Andrew Morton <akpm@linux-foundation.org>
>> ---
>>
>> Patch tested on x86_32 uma.
>>
>> Index: linux-2.6/mm/bootmem.c
>> ===================================================================
>> --- linux-2.6.orig/mm/bootmem.c
>> +++ linux-2.6/mm/bootmem.c
>> @@ -421,7 +421,15 @@ int __init reserve_bootmem(unsigned long
>>
>> void __init free_bootmem(unsigned long addr, unsigned long size)
>> {
>> - free_bootmem_core(NODE_DATA(0)->bdata, addr, size);
>> + bootmem_data_t *bdata;
>> +
>> + list_for_each_entry (bdata, &bdata_list, list) {
>> + if (addr < bdata->node_boot_start)
>> + continue;
>
> could have chance that bootmem with reserved_early that is crossing
> the nodes.
Upstream reserve_bootmem_core() would BUG() on a caller trying to cross
nodes, so I don't see where this chance could come from.
Hannes
next prev parent reply other threads:[~2008-04-13 10:58 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-12 22:33 [patch 0/2] bootmem: Fix node-setup agnostic free_bootmem() Johannes Weiner
2008-04-12 22:33 ` [patch 1/2] bootmem: Revert "mm: fix boundary checking in free_bootmem_core" Johannes Weiner
2008-04-13 1:55 ` Yinghai Lu
2008-04-12 22:33 ` [patch 2/2] bootmem: Node-setup agnostic free_bootmem() Johannes Weiner
2008-04-13 1:59 ` Yinghai Lu
2008-04-13 10:57 ` Johannes Weiner [this message]
2008-04-13 16:56 ` Andi Kleen
2008-04-15 6:23 ` Andrew Morton
2008-04-15 7:04 ` Yinghai Lu
2008-04-15 7:15 ` Andrew Morton
2008-04-15 7:28 ` Yinghai Lu
2008-04-15 7:36 ` Andrew Morton
2008-04-15 11:51 ` Johannes Weiner
2008-04-15 18:52 ` Yinghai Lu
2008-04-15 19:43 ` Johannes Weiner
2008-04-15 7:46 ` Andi Kleen
2008-04-15 11:53 ` Johannes Weiner
2008-04-15 18:44 ` Yinghai Lu
2008-04-15 19:51 ` Johannes Weiner
2008-04-15 19:57 ` Yinghai Lu
2008-04-15 20:05 ` Johannes Weiner
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=87zlry6mzx.fsf@saeurebad.de \
--to=hannes@saeurebad.de \
--cc=ak@suse.de \
--cc=akpm@linux-foundation.org \
--cc=clameter@sgi.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=y-goto@jp.fujitsu.com \
--cc=yhlu.kernel@gmail.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