aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2013-01-30 16:45:03 +0200
committerMarcelo Tosatti <mtosatti@redhat.com>2013-02-04 23:24:28 -0200
commit116eb3d30e7e121bfc6117ac037833865dad4971 (patch)
tree3cbfe80663496153d7b5475789c2646a524cfb06 /arch/x86/kvm
parentKVM: MMU: set base_role.nxe during mmu initialization. (diff)
downloadlinux-dev-116eb3d30e7e121bfc6117ac037833865dad4971.tar.xz
linux-dev-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.c2
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;