qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH uq/master] KVM: x86: fix typo in KVM_GET_XCRS


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH uq/master] KVM: x86: fix typo in KVM_GET_XCRS
Date: Mon, 04 Nov 2013 16:56:04 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130923 Thunderbird/17.0.9

Il 17/10/2013 16:47, Paolo Bonzini ha scritto:
> Only the first item of the array was ever looked at.  No
> practical effect, but still worth fixing.
> 
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
>  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;
>          }
>      }
> 

Ping?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]