* [PATCH 3/3] remove-free_all_bootmem() #define
@ 2005-02-04 21:06 Dave Hansen
0 siblings, 0 replies; only message in thread
From: Dave Hansen @ 2005-02-04 21:06 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, linux-mm, Dave Hansen, apw
in arch/i386/mm/init.c, there's a #define for __free_all_bootmem():
#ifndef CONFIG_DISCONTIGMEM
#define __free_all_bootmem() free_all_bootmem()
#else
#define __free_all_bootmem() free_all_bootmem_node(NODE_DATA(0))
#endif /* !CONFIG_DISCONTIGMEM */
However, both of those functions end up eventually calling the same
thing:
free_all_bootmem_core(NODE_DATA(0))
This might have once been a placeholder for a more complex bootmem
init call, but that never happened. So, kill off the DISCONTIG
version, and just call free_all_bootmem() directly in both cases.
Signed-off-by: Dave Hansen <haveblue@us.ibm.com>
---
memhotplug-dave/arch/i386/mm/init.c | 8 +-------
1 files changed, 1 insertion(+), 7 deletions(-)
diff -puN arch/i386/mm/init.c~A1.3-remove-free_all_bootmem-define arch/i386/mm/init.c
--- memhotplug/arch/i386/mm/init.c~A1.3-remove-free_all_bootmem-define 2005-02-03 11:53:40.000000000 -0800
+++ memhotplug-dave/arch/i386/mm/init.c 2005-02-03 11:53:40.000000000 -0800
@@ -579,12 +579,6 @@ static void __init set_max_mapnr_init(vo
#endif
}
-#ifndef CONFIG_DISCONTIGMEM
-#define __free_all_bootmem() free_all_bootmem()
-#else
-#define __free_all_bootmem() free_all_bootmem_node(NODE_DATA(0))
-#endif /* !CONFIG_DISCONTIGMEM */
-
static struct kcore_list kcore_mem, kcore_vmalloc;
void __init mem_init(void)
@@ -620,7 +614,7 @@ void __init mem_init(void)
#endif
/* this will put all low memory onto the freelists */
- totalram_pages += __free_all_bootmem();
+ totalram_pages += free_all_bootmem();
reservedpages = 0;
for (tmp = 0; tmp < max_low_pfn; tmp++)
_
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-02-04 21:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-04 21:06 [PATCH 3/3] remove-free_all_bootmem() #define Dave Hansen
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®