Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1600324 > unrolled thread

[PATCH 3.12 48/60] KVM: VMX: use correct vmcs_read/write for guest segment selector/base

Started byJiri Slaby <jslaby@suse.cz>
First post2017-03-14 14:20 +0100
Last post2017-03-14 14:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 3.12 48/60] KVM: VMX: use correct vmcs_read/write for guest segment selector/base Jiri Slaby <jslaby@suse.cz> - 2017-03-14 14:20 +0100

#1600324 — [PATCH 3.12 48/60] KVM: VMX: use correct vmcs_read/write for guest segment selector/base

FromJiri Slaby <jslaby@suse.cz>
Date2017-03-14 14:20 +0100
Subject[PATCH 3.12 48/60] KVM: VMX: use correct vmcs_read/write for guest segment selector/base
Message-ID<tkUwN-Bf-5@gated-at.bofh.it>
From: Chao Peng <chao.p.peng@linux.intel.com>

3.12-stable review patch.  If anyone has any objections, please let me know.

===============

commit 96794e4ed4d758272c486e1529e431efb7045265 upstream.

Guest segment selector is 16 bit field and guest segment base is natural
width field. Fix two incorrect invocations accordingly.

Without this patch, build fails when aggressive inlining is used with ICC.

[js] no vmx_dump_sel in 3.12

Signed-off-by: Chao Peng <chao.p.peng@linux.intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
---
 arch/x86/kvm/vmx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index c7f2b3c52d92..d9e567fc36c7 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -3123,7 +3123,7 @@ static void fix_rmode_seg(int seg, struct kvm_segment *save)
 	}
 
 	vmcs_write16(sf->selector, var.selector);
-	vmcs_write32(sf->base, var.base);
+	vmcs_writel(sf->base, var.base);
 	vmcs_write32(sf->limit, var.limit);
 	vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
 }
-- 
2.12.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web