aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/kvm
diff options
context:
space:
mode:
authorUri Lublin <uril@qumranet.com>2006-12-13 03:34:00 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-13 12:05:47 -0500
commitf7fbf1fdf0d79241f5cc95310b96f0c52452ab39 (patch)
treee56bcb3ccb56517279a8727603087813722eb7f4 /drivers/kvm
parentacd19499e9724615d720b29c74be6b218ce765c6 (diff)
[PATCH] KVM: Make the GET_SREGS and SET_SREGS ioctls symmetric
This makes the SET_SREGS ioctl behave symmetrically to the GET_SREGS ioctl wrt the segment access rights flag. Signed-off-by: Uri Lublin <uril@qumranet.com> Signed-off-by: Avi Kivity <avi@qumranet.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/kvm')
-rw-r--r--drivers/kvm/vmx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c
index ad97014aa6eb..fc01c4b08fd5 100644
--- a/drivers/kvm/vmx.c
+++ b/drivers/kvm/vmx.c
@@ -884,6 +884,8 @@ static void vmx_set_segment(struct kvm_vcpu *vcpu,
884 ar |= (var->db & 1) << 14; 884 ar |= (var->db & 1) << 14;
885 ar |= (var->g & 1) << 15; 885 ar |= (var->g & 1) << 15;
886 } 886 }
887 if (ar == 0) /* a 0 value means unusable */
888 ar = AR_UNUSABLE_MASK;
887 vmcs_write32(sf->ar_bytes, ar); 889 vmcs_write32(sf->ar_bytes, ar);
888} 890}
889 891