summaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/mmzone.h
diff options
context:
space:
mode:
authorDavid S. Miller2008-04-23 14:40:25 +0200
committerDavid S. Miller2008-04-24 08:32:17 +0200
commit919ee677b656c52c5f86d3d916786891220d5452 (patch)
treedd1202209945b4c2529af074effdb7300edda684 /include/asm-sparc64/mmzone.h
parent[SPARC64]: Allocate TSB node-local. (diff)
downloadkernel-qcow2-linux-919ee677b656c52c5f86d3d916786891220d5452.tar.gz
kernel-qcow2-linux-919ee677b656c52c5f86d3d916786891220d5452.tar.xz
kernel-qcow2-linux-919ee677b656c52c5f86d3d916786891220d5452.zip
[SPARC64]: Add NUMA support.
Currently there is only code to parse NUMA attributes on sun4v/niagara systems, but later on we will add such parsing for older systems. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64/mmzone.h')
-rw-r--r--include/asm-sparc64/mmzone.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/asm-sparc64/mmzone.h b/include/asm-sparc64/mmzone.h
new file mode 100644
index 000000000000..ebf5986c12ed
--- /dev/null
+++ b/include/asm-sparc64/mmzone.h
@@ -0,0 +1,17 @@
+#ifndef _SPARC64_MMZONE_H
+#define _SPARC64_MMZONE_H
+
+#ifdef CONFIG_NEED_MULTIPLE_NODES
+
+extern struct pglist_data *node_data[];
+
+#define NODE_DATA(nid) (node_data[nid])
+#define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
+#define node_end_pfn(nid) (NODE_DATA(nid)->node_end_pfn)
+
+extern int numa_cpu_lookup_table[];
+extern cpumask_t numa_cpumask_lookup_table[];
+
+#endif /* CONFIG_NEED_MULTIPLE_NODES */
+
+#endif /* _SPARC64_MMZONE_H */