aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2008-10-27 05:04:17 -0400
committerAvi Kivity <avi@redhat.com>2008-12-31 09:51:48 -0500
commit25022acc3dd5f0b54071c7ba7c371860f2971b52 (patch)
tree819a2ae0e14c8f22050ad847a42e4f9058f9f273 /arch/x86/kvm
parentb8222ad2e52fd2c0c4e5e1c53e65d131f911b767 (diff)
KVM: SVM: Set the 'g' bit of the cs selector for cross-vendor migration
The hardware does not set the 'g' bit of the cs selector and this breaks migration from amd hosts to intel hosts. Set this bit if the segment limit is beyond 1 MB. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/svm.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index 05efc4ef75a6..665008d97856 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -772,6 +772,15 @@ static void svm_get_segment(struct kvm_vcpu *vcpu,
772 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1; 772 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
773 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1; 773 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
774 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1; 774 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
775
776 /*
777 * SVM always stores 0 for the 'G' bit in the CS selector in
778 * the VMCB on a VMEXIT. This hurts cross-vendor migration:
779 * Intel's VMENTRY has a check on the 'G' bit.
780 */
781 if (seg == VCPU_SREG_CS)
782 var->g = s->limit > 0xfffff;
783
775 var->unusable = !var->present; 784 var->unusable = !var->present;
776} 785}
777 786