]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[POWERPC] Make tlb flush batch use lazy MMU mode
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Tue, 10 Apr 2007 07:09:37 +0000 (17:09 +1000)
committerPaul Mackerras <paulus@samba.org>
Thu, 12 Apr 2007 18:09:38 +0000 (04:09 +1000)
commita741e67969577163a4cfc78d7fd2753219087ef1
treebac4162aaf15367e896429afa60465e201c9204c
parente4ee3891db35aa9a069bb403c2a66a8fbfa274d6
[POWERPC] Make tlb flush batch use lazy MMU mode

The current tlb flush code on powerpc 64 bits has a subtle race since we
lost the page table lock due to the possible faulting in of new PTEs
after a previous one has been removed but before the corresponding hash
entry has been evicted, which can leads to all sort of fatal problems.

This patch reworks the batch code completely. It doesn't use the mmu_gather
stuff anymore. Instead, we use the lazy mmu hooks that were added by the
paravirt code. They have the nice property that the enter/leave lazy mmu
mode pair is always fully contained by the PTE lock for a given range
of PTEs. Thus we can guarantee that all batches are flushed on a given
CPU before it drops that lock.

We also generalize batching for any PTE update that require a flush.

Batching is now enabled on a CPU by arch_enter_lazy_mmu_mode() and
disabled by arch_leave_lazy_mmu_mode(). The code epects that this is
always contained within a PTE lock section so no preemption can happen
and no PTE insertion in that range from another CPU. When batching
is enabled on a CPU, every PTE updates that need a hash flush will
use the batch for that flush.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/process.c
arch/powerpc/kernel/smp.c
arch/powerpc/mm/hugetlbpage.c
arch/powerpc/mm/tlb_64.c
include/asm-powerpc/pgtable.h
include/asm-powerpc/tlb.h
include/asm-powerpc/tlbflush.h