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:
f51202d
)
memory-hotplug: sh: suitable memory should go to ZONE_MOVABLE
author
Wang Nan
<
[email protected]
>
Wed, 6 Aug 2014 23:07:47 +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 sh 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/sh/mm/init.c
patch
|
blob
|
history
diff --git
a/arch/sh/mm/init.c
b/arch/sh/mm/init.c
index 2d089fe2cba910153e8d9bf1db927fd18ca9a83d..2790b6a64157f79663fe5232afe9f857e6d81cb7 100644
(file)
--- a/
arch/sh/mm/init.c
+++ b/
arch/sh/mm/init.c
@@
-495,8
+495,9
@@
int arch_add_memory(int nid, u64 start, u64 size)
pgdat = NODE_DATA(nid);
/* We only have ZONE_NORMAL, so this is easy.. */
- ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
- start_pfn, nr_pages);
+ ret = __add_pages(nid, pgdat->node_zones +
+ zone_for_memory(nid, start, size, ZONE_NORMAL),
+ start_pfn, nr_pages);
if (unlikely(ret))
printk("%s: Failed, __add_pages() == %d\n", __func__, ret);