linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] set correct numa_zonelist_order string when configured on the kernel command line
@ 2010-12-14 10:27 Volodymyr G. Lukiianyk
  2010-12-15  0:03 ` KAMEZAWA Hiroyuki
  0 siblings, 1 reply; 2+ messages in thread
From: Volodymyr G. Lukiianyk @ 2010-12-14 10:27 UTC (permalink / raw)
  To: linux-mm; +Cc: Andrew Morton, KAMEZAWA Hiroyuki

When numa_zonelist_order parameter is set to "node" or "zone" on the command line
it's still showing as "default" in sysctl. That's because early_param parsing
function changes only user_zonelist_order variable. Fix this by copying
user-provided string to numa_zonelist_order if it was successfully parsed.

Signed-off-by: Volodymyr G Lukiianyk <volodymyrgl@gmail.com>

---

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index ff7e158..ddb81af 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -2585,9 +2585,16 @@ static int __parse_numa_zonelist_order(char *s)

 static __init int setup_numa_zonelist_order(char *s)
 {
-	if (s)
-		return __parse_numa_zonelist_order(s);
-	return 0;
+	int ret;
+
+	if (!s)
+		return 0;
+
+	ret = __parse_numa_zonelist_order(s);
+	if (ret == 0)
+		strlcpy(numa_zonelist_order, s, NUMA_ZONELIST_ORDER_LEN);
+
+	return ret;
 }
 early_param("numa_zonelist_order", setup_numa_zonelist_order);


--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom policy in Canada: sign http://dissolvethecrtc.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-12-15  0:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-14 10:27 [PATCH] set correct numa_zonelist_order string when configured on the kernel command line Volodymyr G. Lukiianyk
2010-12-15  0:03 ` KAMEZAWA Hiroyuki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).