KVM: MMU: improve write flooding detected
authorXiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Thu, 22 Sep 2011 08:58:36 +0000 (16:58 +0800)
committerAvi Kivity <avi@redhat.com>
Tue, 27 Dec 2011 09:17:02 +0000 (11:17 +0200)
commita30f47cb150dd8d109923eeb65fe73e8b3e09046
tree09a723b407b0fefb1b05a30b490b8372ec2cf5cf
parent5d9ca30e96f567b67a36727aa4ebb34911a2b84a
KVM: MMU: improve write flooding detected

Detecting write-flooding does not work well, when we handle page written, if
the last speculative spte is not accessed, we treat the page is
write-flooding, however, we can speculative spte on many path, such as pte
prefetch, page synced, that means the last speculative spte may be not point
to the written page and the written page can be accessed via other sptes, so
depends on the Accessed bit of the last speculative spte is not enough

Instead of detected page accessed, we can detect whether the spte is accessed
after it is written, if the spte is not accessed but it is written frequently,
we treat is not a page table or it not used for a long time

Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/include/asm/kvm_host.h
arch/x86/kvm/mmu.c
arch/x86/kvm/paging_tmpl.h