projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bfc411
)
memory-hotplug: x86_32: suitable memory should go to ZONE_MOVABLE
author
Wang Nan
<
[email protected]
>
Wed, 6 Aug 2014 23:07:40 +0000
(16:07 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 7 Aug 2014 01:01:21 +0000
(18:01 -0700)
This patch introduces zone_for_memory() to arch_add_memory() on x86_32
to ensure new, higher memory added into ZONE_MOVABLE if movable zone has
already setup.
Signed-off-by: Wang Nan <
[email protected]
>
Cc: Zhang Yanfei <
[email protected]
>
Cc: Dave Hansen <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Yinghai Lu <
[email protected]
>
Cc: "Mel Gorman" <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc: "H. Peter Anvin" <
[email protected]
>
Cc: "Luck, Tony" <
[email protected]
>
Cc: Benjamin Herrenschmidt <
[email protected]
>
Cc: Paul Mackerras <
[email protected]
>
Cc: Chris Metcalf <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/x86/mm/init_32.c
patch
|
blob
|
history
diff --git
a/arch/x86/mm/init_32.c
b/arch/x86/mm/init_32.c
index e39504878aecd22f6688073bd3fca80f39bfd9c1..7d05565ba7813047cfc4f4d96d339f9af0e5c3d3 100644
(file)
--- a/
arch/x86/mm/init_32.c
+++ b/
arch/x86/mm/init_32.c
@@
-825,7
+825,8
@@
void __init mem_init(void)
int arch_add_memory(int nid, u64 start, u64 size)
{
struct pglist_data *pgdata = NODE_DATA(nid);
- struct zone *zone = pgdata->node_zones + ZONE_HIGHMEM;
+ struct zone *zone = pgdata->node_zones +
+ zone_for_memory(nid, start, size, ZONE_HIGHMEM);
unsigned long start_pfn = start >> PAGE_SHIFT;
unsigned long nr_pages = size >> PAGE_SHIFT;