diff options
Diffstat (limited to 'arch/x86/platform/uv/tlb_uv.c')
-rw-r--r-- | arch/x86/platform/uv/tlb_uv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c index 994798548b1a..3b6ec42718e4 100644 --- a/arch/x86/platform/uv/tlb_uv.c +++ b/arch/x86/platform/uv/tlb_uv.c | |||
@@ -415,7 +415,7 @@ static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp) | |||
415 | struct reset_args reset_args; | 415 | struct reset_args reset_args; |
416 | 416 | ||
417 | reset_args.sender = sender; | 417 | reset_args.sender = sender; |
418 | cpus_clear(*mask); | 418 | cpumask_clear(mask); |
419 | /* find a single cpu for each uvhub in this distribution mask */ | 419 | /* find a single cpu for each uvhub in this distribution mask */ |
420 | maskbits = sizeof(struct pnmask) * BITSPERBYTE; | 420 | maskbits = sizeof(struct pnmask) * BITSPERBYTE; |
421 | /* each bit is a pnode relative to the partition base pnode */ | 421 | /* each bit is a pnode relative to the partition base pnode */ |
@@ -425,7 +425,7 @@ static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp) | |||
425 | continue; | 425 | continue; |
426 | apnode = pnode + bcp->partition_base_pnode; | 426 | apnode = pnode + bcp->partition_base_pnode; |
427 | cpu = pnode_to_first_cpu(apnode, smaster); | 427 | cpu = pnode_to_first_cpu(apnode, smaster); |
428 | cpu_set(cpu, *mask); | 428 | cpumask_set_cpu(cpu, mask); |
429 | } | 429 | } |
430 | 430 | ||
431 | /* IPI all cpus; preemption is already disabled */ | 431 | /* IPI all cpus; preemption is already disabled */ |
@@ -1126,7 +1126,7 @@ const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask, | |||
1126 | /* don't actually do a shootdown of the local cpu */ | 1126 | /* don't actually do a shootdown of the local cpu */ |
1127 | cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu)); | 1127 | cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu)); |
1128 | 1128 | ||
1129 | if (cpu_isset(cpu, *cpumask)) | 1129 | if (cpumask_test_cpu(cpu, cpumask)) |
1130 | stat->s_ntargself++; | 1130 | stat->s_ntargself++; |
1131 | 1131 | ||
1132 | bau_desc = bcp->descriptor_base; | 1132 | bau_desc = bcp->descriptor_base; |