Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecb256f8 authored by Volodymyr G. Lukiianyk's avatar Volodymyr G. Lukiianyk Committed by Linus Torvalds
Browse files

mm: set correct numa_zonelist_order string when configured on the kernel command line



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: default avatarVolodymyr G Lukiianyk <volodymyrgl@gmail.com>
Acked-by: default avatarKAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent dc83edd9
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -2631,9 +2631,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);
	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);