Commit 973a4e70 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] ppc64: Add numa=off command line option

From: Anton Blanchard <anton@samba.org>

Add numa=off command line option to disable NUMA support at runtime.
Useful if there are issues with our parsing of the NUMA toplogy or for
testing NUMA gains.
parent a800d7b1
......@@ -15,6 +15,7 @@
#include <linux/mmzone.h>
#include <linux/module.h>
#include <asm/lmb.h>
#include <asm/machdep.h>
#if 1
#define dbg(args...) udbg_printf(args)
......@@ -65,6 +66,11 @@ static int __init parse_numa_properties(void)
int depth;
int max_domain = 0;
if (strstr(saved_command_line, "numa=off")) {
printk(KERN_WARNING "NUMA disabled by user\n");
return -1;
}
cpu = of_find_node_by_type(NULL, "cpu");
if (!cpu)
goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment