diff options
author | Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> | 2013-02-05 02:27:27 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2013-02-06 19:42:08 -0500 |
commit | f761620377ebc791afba7ded078947d2116f48ce (patch) | |
tree | 78513763054bb53cb3e837acead724ac2682c9ab | |
parent | 55dd98c3a81e243447d5fbf496fa8b909ef3b7f6 (diff) |
KVM: MMU: remove pt_access in mmu_set_spte
It is only used in debug code, so drop it
Reviewed-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r-- | arch/x86/kvm/mmu.c | 17 | ||||
-rw-r--r-- | arch/x86/kvm/paging_tmpl.h | 9 |
2 files changed, 11 insertions, 15 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 5356d8d2d496..e956e9bed294 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -2388,16 +2388,15 @@ done: | |||
2388 | } | 2388 | } |
2389 | 2389 | ||
2390 | static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, | 2390 | static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
2391 | unsigned pt_access, unsigned pte_access, | 2391 | unsigned pte_access, int write_fault, int *emulate, |
2392 | int write_fault, int *emulate, int level, gfn_t gfn, | 2392 | int level, gfn_t gfn, pfn_t pfn, bool speculative, |
2393 | pfn_t pfn, bool speculative, bool host_writable) | 2393 | bool host_writable) |
2394 | { | 2394 | { |
2395 | int was_rmapped = 0; | 2395 | int was_rmapped = 0; |
2396 | int rmap_count; | 2396 | int rmap_count; |
2397 | 2397 | ||
2398 | pgprintk("%s: spte %llx access %x write_fault %d gfn %llx\n", | 2398 | pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__, |
2399 | __func__, *sptep, pt_access, | 2399 | *sptep, write_fault, gfn); |
2400 | write_fault, gfn); | ||
2401 | 2400 | ||
2402 | if (is_rmap_spte(*sptep)) { | 2401 | if (is_rmap_spte(*sptep)) { |
2403 | /* | 2402 | /* |
@@ -2513,7 +2512,7 @@ static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu, | |||
2513 | return -1; | 2512 | return -1; |
2514 | 2513 | ||
2515 | for (i = 0; i < ret; i++, gfn++, start++) | 2514 | for (i = 0; i < ret; i++, gfn++, start++) |
2516 | mmu_set_spte(vcpu, start, ACC_ALL, access, 0, NULL, | 2515 | mmu_set_spte(vcpu, start, access, 0, NULL, |
2517 | sp->role.level, gfn, page_to_pfn(pages[i]), | 2516 | sp->role.level, gfn, page_to_pfn(pages[i]), |
2518 | true, true); | 2517 | true, true); |
2519 | 2518 | ||
@@ -2574,9 +2573,7 @@ static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write, | |||
2574 | 2573 | ||
2575 | for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) { | 2574 | for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) { |
2576 | if (iterator.level == level) { | 2575 | if (iterator.level == level) { |
2577 | unsigned pte_access = ACC_ALL; | 2576 | mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, |
2578 | |||
2579 | mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, pte_access, | ||
2580 | write, &emulate, level, gfn, pfn, | 2577 | write, &emulate, level, gfn, pfn, |
2581 | prefault, map_writable); | 2578 | prefault, map_writable); |
2582 | direct_pte_prefetch(vcpu, iterator.sptep); | 2579 | direct_pte_prefetch(vcpu, iterator.sptep); |
diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h index 34c5c99323f4..105dd5bd550e 100644 --- a/arch/x86/kvm/paging_tmpl.h +++ b/arch/x86/kvm/paging_tmpl.h | |||
@@ -326,8 +326,8 @@ FNAME(prefetch_gpte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, | |||
326 | * we call mmu_set_spte() with host_writable = true because | 326 | * we call mmu_set_spte() with host_writable = true because |
327 | * pte_prefetch_gfn_to_pfn always gets a writable pfn. | 327 | * pte_prefetch_gfn_to_pfn always gets a writable pfn. |
328 | */ | 328 | */ |
329 | mmu_set_spte(vcpu, spte, sp->role.access, pte_access, 0, | 329 | mmu_set_spte(vcpu, spte, pte_access, 0, NULL, PT_PAGE_TABLE_LEVEL, |
330 | NULL, PT_PAGE_TABLE_LEVEL, gfn, pfn, true, true); | 330 | gfn, pfn, true, true); |
331 | 331 | ||
332 | return true; | 332 | return true; |
333 | } | 333 | } |
@@ -470,9 +470,8 @@ static int FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr, | |||
470 | } | 470 | } |
471 | 471 | ||
472 | clear_sp_write_flooding_count(it.sptep); | 472 | clear_sp_write_flooding_count(it.sptep); |
473 | mmu_set_spte(vcpu, it.sptep, access, gw->pte_access, | 473 | mmu_set_spte(vcpu, it.sptep, gw->pte_access, write_fault, &emulate, |
474 | write_fault, &emulate, it.level, | 474 | it.level, gw->gfn, pfn, prefault, map_writable); |
475 | gw->gfn, pfn, prefault, map_writable); | ||
476 | FNAME(pte_prefetch)(vcpu, gw, it.sptep); | 475 | FNAME(pte_prefetch)(vcpu, gw, it.sptep); |
477 | 476 | ||
478 | return emulate; | 477 | return emulate; |