From: Lai Jiangshan Date: Wed, 12 Dec 2012 21:51:40 +0000 (-0800) Subject: init: use N_MEMORY instead N_HIGH_MEMORY X-Git-Tag: upstream/snapshot3+hdmi~6084^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c466d46a9f38de141d8a492d8b1b1d0fa504759;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git init: use N_MEMORY instead N_HIGH_MEMORY N_HIGH_MEMORY stands for the nodes that has normal or high memory. N_MEMORY stands for the nodes that has any memory. The code here need to handle with the nodes which have memory, we should use N_MEMORY instead. Signed-off-by: Lai Jiangshan Signed-off-by: Wen Congyang Cc: Christoph Lameter Cc: Hillf Danton Cc: Lin Feng Cc: David Rientjes Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/init/main.c b/init/main.c index e33e09d..63ae904 100644 --- a/init/main.c +++ b/init/main.c @@ -857,7 +857,7 @@ static void __init kernel_init_freeable(void) /* * init can allocate pages on any node */ - set_mems_allowed(node_states[N_HIGH_MEMORY]); + set_mems_allowed(node_states[N_MEMORY]); /* * init can run on any cpu. */