From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chen Gang Subject: Re: [PATCH] ARM(64): KVM: add signed type cast for comparation Date: Tue, 30 Jul 2013 10:51:47 +0800 Message-ID: <51F72A43.5090409@asianux.com> References: <51ECA4EC.3000408@asianux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Russell King - ARM Linux , kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org, "linux-arm-kernel@lists.infradead.org" , Catalin Marinas , Will Deacon To: christoffer.dall@linaro.org, Gleb Natapov , pbonzini@redhat.com Return-path: Received: from intranet.asianux.com ([58.214.24.6]:9552 "EHLO intranet.asianux.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754356Ab3G3Cws (ORCPT ); Mon, 29 Jul 2013 22:52:48 -0400 In-Reply-To: <51ECA4EC.3000408@asianux.com> Sender: kvm-owner@vger.kernel.org List-ID: Hello Maintainers: Please help check the patch whether OK or not, when you have time. Thanks. On 07/22/2013 11:20 AM, Chen Gang wrote: > 'len' is 'unsigned long' which is never less than zero. > > So need a related type cast for comparation. > > The related warning (when building ARM64 with allmodconfig): > > arch/arm64/kvm/../../../arch/arm/kvm/mmio.c:82:2: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] > > > Signed-off-by: Chen Gang > --- > arch/arm/kvm/mmio.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/kvm/mmio.c b/arch/arm/kvm/mmio.c > index b8e06b7..626dfc8 100644 > --- a/arch/arm/kvm/mmio.c > +++ b/arch/arm/kvm/mmio.c > @@ -79,7 +79,7 @@ static int decode_hsr(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa, > } > > len = kvm_vcpu_dabt_get_as(vcpu); > - if (unlikely(len < 0)) > + if (unlikely((long)len < 0)) > return len; > > is_write = kvm_vcpu_dabt_iswrite(vcpu); > -- Chen Gang