summaryrefslogtreecommitdiffstats
path: root/arch/x86/mm
diff options
context:
space:
mode:
authorRusty Russell2009-03-13 05:19:57 +0100
committerRusty Russell2009-03-13 05:19:57 +0100
commit73e907de7d5cecef43d9949ab8f4fdca508168c7 (patch)
treef1e623cbc0685cd8e36ba7d4ee75fd2c5191db15 /arch/x86/mm
parentcpumask: use cpumask_var_t in uv_flush_tlb_others. (diff)
downloadkernel-qcow2-linux-73e907de7d5cecef43d9949ab8f4fdca508168c7.tar.gz
kernel-qcow2-linux-73e907de7d5cecef43d9949ab8f4fdca508168c7.tar.xz
kernel-qcow2-linux-73e907de7d5cecef43d9949ab8f4fdca508168c7.zip
cpumask: remove x86 cpumask_t uses.
Impact: cleanup We are removing cpumask_t in favour of struct cpumask: mainly as a marker of what code is now CONFIG_CPUMASK_OFFSTACK-safe. The only non-trivial change here is vector_allocation_domain(): explicitly clear the mask and set the first word, rather than using assignment. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r--arch/x86/mm/numa.c2
-rw-r--r--arch/x86/mm/numa_64.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/numa.c b/arch/x86/mm/numa.c
index 429dc2d191fd..ce255e32a593 100644
--- a/arch/x86/mm/numa.c
+++ b/arch/x86/mm/numa.c
@@ -45,7 +45,7 @@ void __init setup_node_to_cpumask_map(void)
/*
* Returns a pointer to the bitmask of CPUs on Node 'node'.
*/
-const cpumask_t *cpumask_of_node(int node)
+const struct cpumask *cpumask_of_node(int node)
{
if (node >= nr_node_ids) {
printk(KERN_WARNING
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c
index 9d2b3d2625cd..d73aaa892371 100644
--- a/arch/x86/mm/numa_64.c
+++ b/arch/x86/mm/numa_64.c
@@ -697,7 +697,7 @@ void __cpuinit numa_remove_cpu(int cpu)
static void __cpuinit numa_set_cpumask(int cpu, int enable)
{
int node = early_cpu_to_node(cpu);
- cpumask_t *mask;
+ struct cpumask *mask;
char buf[64];
mask = node_to_cpumask_map[node];