diff options
author | Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> | 2010-04-27 23:55:15 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-05-19 04:36:28 -0400 |
commit | 884a0ff0b68b3ece5987507de168215e14ef7849 (patch) | |
tree | 606103cc9a2b2116993becd2cab118d004ed38a1 | |
parent | 5e1b3ddbf220d2256a6a0d676a219ed76b8048d0 (diff) |
KVM: MMU: cleanup invlpg code
Using is_last_spte() to cleanup invlpg code
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r-- | arch/x86/kvm/paging_tmpl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h index 3464fdbdb98f..89d66ca4d87c 100644 --- a/arch/x86/kvm/paging_tmpl.h +++ b/arch/x86/kvm/paging_tmpl.h | |||
@@ -474,9 +474,7 @@ static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva) | |||
474 | level = iterator.level; | 474 | level = iterator.level; |
475 | sptep = iterator.sptep; | 475 | sptep = iterator.sptep; |
476 | 476 | ||
477 | if (level == PT_PAGE_TABLE_LEVEL || | 477 | if (is_last_spte(*sptep, level)) { |
478 | ((level == PT_DIRECTORY_LEVEL && is_large_pte(*sptep))) || | ||
479 | ((level == PT_PDPE_LEVEL && is_large_pte(*sptep)))) { | ||
480 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); | 478 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
481 | int offset, shift; | 479 | int offset, shift; |
482 | 480 | ||