aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/numa.c
diff options
context:
space:
mode:
authorHollis Blanchard <hollisb@us.ibm.com>2006-12-12 13:51:29 -0600
committerHollis Blanchard <hollisb@us.ibm.com>2006-12-12 13:51:29 -0600
commitf4cfc2e410c8fa58b343386f27828a081a8dd625 (patch)
tree52432e3ec32c5ee0710f70f346bc3a771fecb036 /xen/arch/x86/numa.c
parent459aeb09af91ca77c3be25484a6a5efdd516e729 (diff)
downloadxen-f4cfc2e410c8fa58b343386f27828a081a8dd625.tar.gz
xen-f4cfc2e410c8fa58b343386f27828a081a8dd625.tar.bz2
xen-f4cfc2e410c8fa58b343386f27828a081a8dd625.zip
[POWERPC][XEN] Fix build break by using bitmap field in cpumask_t.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Diffstat (limited to 'xen/arch/x86/numa.c')
-rw-r--r--xen/arch/x86/numa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c
index d332320af6..23255eb769 100644
--- a/xen/arch/x86/numa.c
+++ b/xen/arch/x86/numa.c
@@ -214,7 +214,7 @@ void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn)
__cpuinit void numa_add_cpu(int cpu)
{
- set_bit(cpu, &node_to_cpumask[cpu_to_node(cpu)]);
+ set_bit(cpu, node_to_cpumask[cpu_to_node(cpu)].bits);
}
void __cpuinit numa_set_node(int cpu, int node)