diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-11-03 21:02:39 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-11-03 21:02:39 +0000 |
commit | 5f8b1178e246422ebddc1b16487314c91edf85fe (patch) | |
tree | 67b0b09acc80bfc1ca81f92cdad45ca156706bea /include | |
parent | 24bcc2f46cf8982dbc02c8e3037dfc5e12f1e35c (diff) | |
parent | 7e5e6e9a509c4ed2973a345ec7ffb96577f42e26 (diff) | |
download | op-kernel-dev-5f8b1178e246422ebddc1b16487314c91edf85fe.zip op-kernel-dev-5f8b1178e246422ebddc1b16487314c91edf85fe.tar.gz |
[ARM] Merge SMP tree
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/mmu_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-arm/mmu_context.h b/include/asm-arm/mmu_context.h index 4af9c41..57b8def 100644 --- a/include/asm-arm/mmu_context.h +++ b/include/asm-arm/mmu_context.h @@ -86,7 +86,8 @@ switch_mm(struct mm_struct *prev, struct mm_struct *next, cpu_set(cpu, next->cpu_vm_mask); check_context(next); cpu_switch_mm(next->pgd, next); - cpu_clear(cpu, prev->cpu_vm_mask); + if (cache_is_vivt()) + cpu_clear(cpu, prev->cpu_vm_mask); } } |