diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-13 14:49:46 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-13 14:49:46 +1030 |
commit | a70f730282019f487aa33a84e5ac9a5e89c5abd0 (patch) | |
tree | e6891ec5db5383c6f39617d0cc9671e1a0d1a988 /mm/slab.c | |
parent | c69fc56de1df5769f2ec69c915c7ad5afe63804c (diff) | |
download | linux-3.10-a70f730282019f487aa33a84e5ac9a5e89c5abd0.tar.gz linux-3.10-a70f730282019f487aa33a84e5ac9a5e89c5abd0.tar.bz2 linux-3.10-a70f730282019f487aa33a84e5ac9a5e89c5abd0.zip |
cpumask: replace node_to_cpumask with cpumask_of_node.
Impact: cleanup
node_to_cpumask (and the blecherous node_to_cpumask_ptr which
contained a declaration) are replaced now everyone implements
cpumask_of_node.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slab.c b/mm/slab.c index 4d00855629c..2daaca0b454 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -1160,7 +1160,7 @@ static void __cpuinit cpuup_canceled(long cpu) struct kmem_cache *cachep; struct kmem_list3 *l3 = NULL; int node = cpu_to_node(cpu); - node_to_cpumask_ptr(mask, node); + const struct cpumask *mask = cpumask_of_node(node); list_for_each_entry(cachep, &cache_chain, next) { struct array_cache *nc; |