From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gleb Natapov Subject: Re: [PATCH uq/master] KVM: x86: fix typo in KVM_GET_XCRS Date: Tue, 5 Nov 2013 09:34:53 +0200 Message-ID: <20131105073453.GH7513@redhat.com> References: <1382021272-6059-1-git-send-email-pbonzini@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org To: Paolo Bonzini Return-path: Received: from mx1.redhat.com ([209.132.183.28]:6836 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750704Ab3KEHe5 (ORCPT ); Tue, 5 Nov 2013 02:34:57 -0500 Content-Disposition: inline In-Reply-To: <1382021272-6059-1-git-send-email-pbonzini@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Thu, Oct 17, 2013 at 04:47:52PM +0200, Paolo Bonzini wrote: > Only the first item of the array was ever looked at. No > practical effect, but still worth fixing. > > Signed-off-by: Paolo Bonzini Applied, thanks. > --- > target-i386/kvm.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/target-i386/kvm.c b/target-i386/kvm.c > index 749aa09..27071e3 100644 > --- a/target-i386/kvm.c > +++ b/target-i386/kvm.c > @@ -1314,8 +1314,8 @@ static int kvm_get_xcrs(X86CPU *cpu) > > for (i = 0; i < xcrs.nr_xcrs; i++) { > /* Only support xcr0 now */ > - if (xcrs.xcrs[0].xcr == 0) { > - env->xcr0 = xcrs.xcrs[0].value; > + if (xcrs.xcrs[i].xcr == 0) { > + env->xcr0 = xcrs.xcrs[i].value; > break; > } > } > -- > 1.8.3.1 -- Gleb.