KVM: MMU: optimize for set_spte
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Mon, 3 Dec 2012 23:17:11 +0000 (07:17 +0800)
committerGleb Natapov <gleb@redhat.com>
Thu, 6 Dec 2012 07:11:25 +0000 (09:11 +0200)
commitc21934632549910188fb5cf40e79033f27a0741b
tree271e20df3e69e3c741321f4a254ef650791e909e
parent66f7b72e117180d0007e7a65b8dc5bd1c8126e3b
KVM: MMU: optimize for set_spte

There are two cases we need to adjust page size in set_spte:
1): the one is other vcpu creates new sp in the window between mapping_level()
    and acquiring mmu-lock.
2): the another case is the new sp is created by itself (page-fault path) when
    guest uses the target gfn as its page table.

In current code, set_spte drop the spte and emulate the access for these case,
it works not good:
- for the case 1, it may destroy the mapping established by other vcpu, and
  do expensive instruction emulation.
- for the case 2, it may emulate the access even if the guest is accessing
  the page which not used as page table. There is a example, 0~2M is used as
  huge page in guest, in this huge page, only page 3 used as page table, then
  guest read/writes on other pages can cause instruction emulation.

Both of these cases can be fixed by allowing guest to retry the access, it
will refault, then we can establish the mapping by using small page

Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Acked-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
arch/x86/kvm/mmu.c