Skip to content

Commit

Permalink
KVM: x86: Clean up duplicate assignment
Browse files Browse the repository at this point in the history
mmu.free() already set root_hpa to INVALID_PAGE, no need to do it again in the
destory_kvm_mmu().

kvm_x86_ops->set_cr4() and set_efer() already assign cr4/efer to
vcpu->arch.cr4/efer, no need to do it again later.

Signed-off-by: Sheng Yang <[email protected]>
Signed-off-by: Marcelo Tosatti <[email protected]>
  • Loading branch information
Sheng Yang authored and avikivity committed Aug 1, 2010
1 parent 222b7c5 commit 62ad075
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions arch/x86/kvm/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2478,10 +2478,9 @@ static int init_kvm_mmu(struct kvm_vcpu *vcpu)
static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
{
ASSERT(vcpu);
if (VALID_PAGE(vcpu->arch.mmu.root_hpa)) {
if (VALID_PAGE(vcpu->arch.mmu.root_hpa))
/* mmu.free() should set root_hpa = INVALID_PAGE */
vcpu->arch.mmu.free(vcpu);
vcpu->arch.mmu.root_hpa = INVALID_PAGE;
}
}

int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Expand Down
4 changes: 1 addition & 3 deletions arch/x86/kvm/x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ int __kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
return 1;

kvm_x86_ops->set_cr4(vcpu, cr4);
vcpu->arch.cr4 = cr4;

kvm_mmu_reset_context(vcpu);

return 0;
Expand Down Expand Up @@ -721,8 +721,6 @@ static int set_efer(struct kvm_vcpu *vcpu, u64 efer)

kvm_x86_ops->set_efer(vcpu, efer);

vcpu->arch.efer = efer;

vcpu->arch.mmu.base_role.nxe = (efer & EFER_NX) && !tdp_enabled;
kvm_mmu_reset_context(vcpu);

Expand Down

0 comments on commit 62ad075

Please sign in to comment.