[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <873aplfvzu.fsf@saeurebad.de>
Date: Wed, 16 Apr 2008 21:19:33 +0200
From: Johannes Weiner <hannes@...urebad.de>
To: "Yinghai Lu" <yhlu.kernel@...il.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
"Linux MM" <linux-mm@...ck.org>, "Ingo Molnar" <mingo@...e.hu>,
"Andi Kleen" <andi@...stfloor.org>,
"Yasunori Goto" <y-goto@...fujitsu.com>,
"KAMEZAWA Hiroyuki" <kamezawa.hiroyu@...fujitsu.com>,
"Christoph Lameter" <clameter@....com>,
"Andrew Morton" <akpm@...ux-foundation.org>
Subject: Re: [RFC][patch 2/5] mm: Node-setup agnostic free_bootmem()
Hi,
"Yinghai Lu" <yhlu.kernel@...il.com> writes:
> On Wed, Apr 16, 2008 at 4:36 AM, Johannes Weiner <hannes@...urebad.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.
>>
>> If the address range exceeds the node range, it well be marked free
>> across node boundaries, too.
>>
>> Signed-off-by: Johannes Weiner <hannes@...urebad.de>
>> CC: Ingo Molnar <mingo@...e.hu>
>> CC: Andi Kleen <andi@...stfloor.org>
>> CC: Yinghai Lu <yhlu.kernel@...il.com>
>> CC: Yasunori Goto <y-goto@...fujitsu.com>
>> CC: KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
>> CC: Christoph Lameter <clameter@....com>
>> CC: Andrew Morton <akpm@...ux-foundation.org>
>> ---
>> mm/bootmem.c | 10 +++++++++-
>> 1 files changed, 9 insertions(+), 1 deletions(-)
>>
>> Index: tree-linus/mm/bootmem.c
>> ===================================================================
>> --- tree-linus.orig/mm/bootmem.c
>> +++ tree-linus/mm/bootmem.c
>> @@ -421,7 +421,32 @@ 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;
>> + unsigned long pos = addr;
>> + unsigned long partsize = size;
>> +
>> + list_for_each_entry(bdata, &bdata_list, list) {
>> + unsigned long remainder = 0;
>> +
>> + if (pos < bdata->node_boot_start)
>> + continue;
>> +
>> + if (PFN_DOWN(pos + partsize) > bdata->node_low_pfn) {
>> + remainder = PFN_DOWN(pos + partsize) - bdata->node_low_pfn;
>> + partsize -= remainder;
>> + }
>> +
>> + free_bootmem_core(bdata, pos, partsize);
>> +
>> + if (!remainder)
>> + return;
>> +
>> + pos = PFN_PHYS(bdata->node_low_pfn + 1);
>> + }
>> + printk(KERN_ERR "free_bootmem: request: addr=%lx, size=%lx, "
>> + "state: pos=%lx, partsize=%lx\n", addr, size,
>> + pos, partsize);
>> + BUG();
>> }
>>
>> unsigned long __init free_all_bootmem(void)
>>
>> --
>
> Yes, it should work well with cross nodes case.
>
> but please add boundary check on free_bootmem_node too.
Alright, I will.
Hannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists