summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2018-12-03 17:57:27 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2018-12-03 17:58:21 +1100
commitbbdf8ab148e2add4e2b5b45ece33d320593e4d31 (patch)
treef5c4168640e131362427e69304bd58f5a0d16bed
parentb198b81ceb3b78fc33883fbcc9a7e60107583c97 (diff)
downloadlinux-bbdf8ab148e2add4e2b5b45ece33d320593e4d31.tar.gz
linux-bbdf8ab148e2add4e2b5b45ece33d320593e4d31.tar.xz
linux/numa.h is now needed for the perf build
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--tools/include/linux/numa.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/include/linux/numa.h b/tools/include/linux/numa.h
new file mode 100644
index 000000000000..110b0e5d0fb0
--- /dev/null
+++ b/tools/include/linux/numa.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _LINUX_NUMA_H
+#define _LINUX_NUMA_H
+
+
+#ifdef CONFIG_NODES_SHIFT
+#define NODES_SHIFT CONFIG_NODES_SHIFT
+#else
+#define NODES_SHIFT 0
+#endif
+
+#define MAX_NUMNODES (1 << NODES_SHIFT)
+
+#define NUMA_NO_NODE (-1)
+
+#endif /* _LINUX_NUMA_H */