diff options
author | Brian Gerst <bgerst@didntduck.org> | 2006-03-25 10:31:13 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 12:10:56 -0500 |
commit | b1fc513d81b0f50f9543428ce95ec63ae70ab184 (patch) | |
tree | ee3fc9dc3830e3cca3918911ee50804abfcc0094 | |
parent | 267b48014a5c0c2ae90b04dad5d95ceb903365a6 (diff) |
[PATCH] x86_64: Use cpumask bitops for cpu_vm_mask
cpu_vm_mask is of type cpumask_t, so use the proper bitops.
Signed-off-by: Brian Gerst <bgerst@didntduck.org>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/x86_64/kernel/smp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86_64/kernel/smp.c b/arch/x86_64/kernel/smp.c index 19ef012b1f17..4a6628b14d99 100644 --- a/arch/x86_64/kernel/smp.c +++ b/arch/x86_64/kernel/smp.c | |||
@@ -75,7 +75,7 @@ static inline void leave_mm(int cpu) | |||
75 | { | 75 | { |
76 | if (read_pda(mmu_state) == TLBSTATE_OK) | 76 | if (read_pda(mmu_state) == TLBSTATE_OK) |
77 | BUG(); | 77 | BUG(); |
78 | clear_bit(cpu, &read_pda(active_mm)->cpu_vm_mask); | 78 | cpu_clear(cpu, read_pda(active_mm)->cpu_vm_mask); |
79 | load_cr3(swapper_pg_dir); | 79 | load_cr3(swapper_pg_dir); |
80 | } | 80 | } |
81 | 81 | ||
@@ -85,7 +85,7 @@ static inline void leave_mm(int cpu) | |||
85 | * [cpu0: the cpu that switches] | 85 | * [cpu0: the cpu that switches] |
86 | * 1) switch_mm() either 1a) or 1b) | 86 | * 1) switch_mm() either 1a) or 1b) |
87 | * 1a) thread switch to a different mm | 87 | * 1a) thread switch to a different mm |
88 | * 1a1) clear_bit(cpu, &old_mm->cpu_vm_mask); | 88 | * 1a1) cpu_clear(cpu, old_mm->cpu_vm_mask); |
89 | * Stop ipi delivery for the old mm. This is not synchronized with | 89 | * Stop ipi delivery for the old mm. This is not synchronized with |
90 | * the other cpus, but smp_invalidate_interrupt ignore flush ipis | 90 | * the other cpus, but smp_invalidate_interrupt ignore flush ipis |
91 | * for the wrong mm, and in the worst case we perform a superfluous | 91 | * for the wrong mm, and in the worst case we perform a superfluous |
@@ -95,7 +95,7 @@ static inline void leave_mm(int cpu) | |||
95 | * was in lazy tlb mode. | 95 | * was in lazy tlb mode. |
96 | * 1a3) update cpu active_mm | 96 | * 1a3) update cpu active_mm |
97 | * Now cpu0 accepts tlb flushes for the new mm. | 97 | * Now cpu0 accepts tlb flushes for the new mm. |
98 | * 1a4) set_bit(cpu, &new_mm->cpu_vm_mask); | 98 | * 1a4) cpu_set(cpu, new_mm->cpu_vm_mask); |
99 | * Now the other cpus will send tlb flush ipis. | 99 | * Now the other cpus will send tlb flush ipis. |
100 | * 1a4) change cr3. | 100 | * 1a4) change cr3. |
101 | * 1b) thread switch without mm change | 101 | * 1b) thread switch without mm change |