diff options
author | Gleb Natapov <gleb@redhat.com> | 2013-01-30 15:45:03 +0100 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2013-02-05 02:24:28 +0100 |
commit | 116eb3d30e7e121bfc6117ac037833865dad4971 (patch) | |
tree | 3cbfe80663496153d7b5475789c2646a524cfb06 /arch/x86/kvm | |
parent | KVM: MMU: set base_role.nxe during mmu initialization. (diff) | |
download | linux-116eb3d30e7e121bfc6117ac037833865dad4971.tar.xz linux-116eb3d30e7e121bfc6117ac037833865dad4971.zip |
KVM: MMU: drop superfluous min() call.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 8028ac65db18..42ba85c62fcb 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -3854,7 +3854,7 @@ static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa, /* Handle a 32-bit guest writing two halves of a 64-bit gpte */ *gpa &= ~(gpa_t)7; *bytes = 8; - r = kvm_read_guest(vcpu->kvm, *gpa, &gentry, min(*bytes, 8)); + r = kvm_read_guest(vcpu->kvm, *gpa, &gentry, 8); if (r) gentry = 0; new = (const u8 *)&gentry; |