Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f7fbf1fdf0d79241f5cc95310b96f0c52452ab39
Commit:     f7fbf1fdf0d79241f5cc95310b96f0c52452ab39
Parent:     acd19499e9724615d720b29c74be6b218ce765c6
Author:     Uri Lublin <[EMAIL PROTECTED]>
AuthorDate: Wed Dec 13 00:34:00 2006 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Wed Dec 13 09:05:47 2006 -0800

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: Avi Kivity <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/kvm/vmx.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c
index ad97014..fc01c4b 100644
--- a/drivers/kvm/vmx.c
+++ b/drivers/kvm/vmx.c
@@ -884,6 +884,8 @@ static void vmx_set_segment(struct kvm_vcpu *vcpu,
                ar |= (var->db & 1) << 14;
                ar |= (var->g & 1) << 15;
        }
+       if (ar == 0) /* a 0 value means unusable */
+               ar = AR_UNUSABLE_MASK;
        vmcs_write32(sf->ar_bytes, ar);
 }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to