summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Miller2009-01-11 13:06:40 +0100
committerIngo Molnar2009-01-11 15:33:24 +0100
commit9d0793370987b98708d2f75ee3bba7c1008d8512 (patch)
treeddc4a9442d730e5c209774dc2b95c9d5ba054251
parentsmp_call_function_single(): be slightly less stupid, fix (diff)
downloadkernel-qcow2-linux-9d0793370987b98708d2f75ee3bba7c1008d8512.tar.gz
kernel-qcow2-linux-9d0793370987b98708d2f75ee3bba7c1008d8512.tar.xz
kernel-qcow2-linux-9d0793370987b98708d2f75ee3bba7c1008d8512.zip
sparc64: Fix cpumask related build failure
cpumask_of_pcibus() was missing - this triggers on NUMA builds. Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/sparc/include/asm/topology_64.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/topology_64.h b/arch/sparc/include/asm/topology_64.h
index b8a65b64e1df..5bc0b8fd6374 100644
--- a/arch/sparc/include/asm/topology_64.h
+++ b/arch/sparc/include/asm/topology_64.h
@@ -47,6 +47,10 @@ static inline int pcibus_to_node(struct pci_bus *pbus)
(pcibus_to_node(bus) == -1 ? \
CPU_MASK_ALL : \
node_to_cpumask(pcibus_to_node(bus)))
+#define cpumask_of_pcibus(bus) \
+ (pcibus_to_node(bus) == -1 ? \
+ CPU_MASK_ALL_PTR : \
+ cpumask_of_node(pcibus_to_node(bus)))
#define SD_NODE_INIT (struct sched_domain) { \
.min_interval = 8, \