All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/10] Optimize page table walk
@ 2012-09-19 16:36 Avi Kivity
  2012-09-19 16:36 ` [PATCH v3 01/10] KVM: MMU: Push clean gpte write protection out of gpte_access() Avi Kivity
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Avi Kivity @ 2012-09-19 16:36 UTC (permalink / raw)
  To: Marcelo Tosatti; +Cc: kvm, Xiao Guangrong

The page table walk has gotten crufty over the years and is threatening to become
even more crufty when SMAP is introduced.  Clean it up (and optimize it) somewhat.

v3:
  fix another boolflip pointed out by Xiao Guangrong
  some cosmetics

v2:
  fix SMEP false positive by moving checks to the end of the walk
  fix last_pte_bitmap documentation
  fix incorrect SMEP fault permission checks
  introduce helper for accessing the permission bitmap


Avi Kivity (10):
  KVM: MMU: Push clean gpte write protection out of gpte_access()
  KVM: MMU: Optimize gpte_access() slightly
  KVM: MMU: Move gpte_access() out of paging_tmpl.h
  KVM: MMU: Update accessed and dirty bits after guest pagetable walk
  KVM: MMU: Optimize pte permission checks
  KVM: MMU: Simplify walk_addr_generic() loop
  KVM: MMU: Optimize is_last_gpte()
  KVM: MMU: Eliminate eperm temporary
  KVM: MMU: Avoid access/dirty update loop if all is well
  KVM: MMU: Eliminate pointless temporary 'ac'

 arch/x86/include/asm/kvm_host.h |  14 +++
 arch/x86/kvm/mmu.c              |  91 +++++++++++++++++++
 arch/x86/kvm/mmu.h              |  25 +++---
 arch/x86/kvm/paging_tmpl.h      | 191 +++++++++++++++++-----------------------
 arch/x86/kvm/x86.c              |  11 +--
 5 files changed, 202 insertions(+), 130 deletions(-)

-- 
1.7.12


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-09-20  3:33 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-19 16:36 [PATCH v3 00/10] Optimize page table walk Avi Kivity
2012-09-19 16:36 ` [PATCH v3 01/10] KVM: MMU: Push clean gpte write protection out of gpte_access() Avi Kivity
2012-09-19 16:36 ` [PATCH v3 02/10] KVM: MMU: Optimize gpte_access() slightly Avi Kivity
2012-09-19 16:36 ` [PATCH v3 03/10] KVM: MMU: Move gpte_access() out of paging_tmpl.h Avi Kivity
2012-09-19 16:36 ` [PATCH v3 04/10] KVM: MMU: Update accessed and dirty bits after guest pagetable walk Avi Kivity
2012-09-19 16:36 ` [PATCH v3 05/10] KVM: MMU: Optimize pte permission checks Avi Kivity
2012-09-19 16:36 ` [PATCH v3 06/10] KVM: MMU: Simplify walk_addr_generic() loop Avi Kivity
2012-09-19 16:36 ` [PATCH v3 07/10] KVM: MMU: Optimize is_last_gpte() Avi Kivity
2012-09-19 16:36 ` [PATCH v3 08/10] KVM: MMU: Eliminate eperm temporary Avi Kivity
2012-09-19 16:36 ` [PATCH v3 09/10] KVM: MMU: Avoid access/dirty update loop if all is well Avi Kivity
2012-09-19 16:36 ` [PATCH v3 10/10] KVM: MMU: Eliminate pointless temporary 'ac' Avi Kivity
2012-09-20  3:33   ` Xiao Guangrong

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.