]> Git Repo - linux.git/commit
x86/mm: In the PTE swapout page reclaim case clear the accessed bit instead of flushi...
authorShaohua Li <[email protected]>
Tue, 8 Apr 2014 07:58:09 +0000 (15:58 +0800)
committerIngo Molnar <[email protected]>
Wed, 16 Apr 2014 06:57:08 +0000 (08:57 +0200)
commitb13b1d2d8692b437203de7a404c6b809d2cc4d99
tree38a4528a0b2cf7d3a9a315d0528fa667494dd6ea
parent5be44a6fb1edb57d7d2d77151870dcd79c8c0e58
x86/mm: In the PTE swapout page reclaim case clear the accessed bit instead of flushing the TLB

We use the accessed bit to age a page at page reclaim time,
and currently we also flush the TLB when doing so.

But in some workloads TLB flush overhead is very heavy. In my
simple multithreaded app with a lot of swap to several pcie
SSDs, removing the tlb flush gives about 20% ~ 30% swapout
speedup.

Fortunately just removing the TLB flush is a valid optimization:
on x86 CPUs, clearing the accessed bit without a TLB flush
doesn't cause data corruption.

It could cause incorrect page aging and the (mistaken) reclaim of
hot pages, but the chance of that should be relatively low.

So as a performance optimization don't flush the TLB when
clearing the accessed bit, it will eventually be flushed by
a context switch or a VM operation anyway. [ In the rare
event of it not getting flushed for a long time the delay
shouldn't really matter because there's no real memory
pressure for swapout to react to. ]

Suggested-by: Linus Torvalds <[email protected]>
Signed-off-by: Shaohua Li <[email protected]>
Acked-by: Rik van Riel <[email protected]>
Acked-by: Mel Gorman <[email protected]>
Acked-by: Hugh Dickins <[email protected]>
Acked-by: Johannes Weiner <[email protected]>
Cc: [email protected]
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
[ Rewrote the changelog and the code comments. ]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/mm/pgtable.c
This page took 0.080163 seconds and 4 git commands to generate.