Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966126AbcJ1XUM (ORCPT ); Fri, 28 Oct 2016 19:20:12 -0400 Received: from us01smtprelay-2.synopsys.com ([198.182.47.9]:37195 "EHLO smtprelay.synopsys.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965381AbcJ1XUK (ORCPT ); Fri, 28 Oct 2016 19:20:10 -0400 Subject: Re: [PATCH] lpfc: use %zd format string for size_t To: Arnd Bergmann References: <20161017123605.2217411-1-arnd@arndb.de> <3374da57-ecd8-6376-5fca-0466fb799777@synopsys.com> <05a8b6f6-b21a-0d77-ba52-23b568967584@synopsys.com> <369474356.SFgOVPi7rO@wuerfel> CC: arcml , lkml , Claudiu Zissulescu Newsgroups: gmane.linux.kernel.arc,gmane.linux.kernel From: Vineet Gupta Message-ID: <0be16cae-62a1-33a5-70c5-f880e32f849d@synopsys.com> Date: Fri, 28 Oct 2016 16:16:48 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <369474356.SFgOVPi7rO@wuerfel> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.10.161.37] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1646 Lines: 52 On 10/28/2016 03:03 PM, Arnd Bergmann wrote: > On Friday, October 28, 2016 2:58:33 PM CEST Vineet Gupta wrote: >> On 10/28/2016 02:52 PM, Vineet Gupta wrote: >>> On 10/28/2016 02:44 PM, Vineet Gupta wrote: >>>> This is configuration specific, and something caused your compiler to >>>>> be built assuming that size_t is unsigned long, while the kernel >>>>> headers are assuming it should be unsigned int. >>> >>> So yes this seems to be target specific gcc thing >>> >>> for ARC 4.8 >>> >>> #define PTRDIFF_TYPE "int" >>> >>> ARM >>> >>> #ifndef PTRDIFF_TYPE >>> #define PTRDIFF_TYPE (TARGET_AAPCS_BASED ? "int" : "long int") >>> #endif >>> >>> ARC gcc 6.2 >>> >>> #undef PTRDIFF_TYPE >>> #define PTRDIFF_TYPE "long int" >> >> Actually we need to adjust SIZE_TYPE (unsigned int) and PTRDIFF_TYPE (int) in the >> gcc 6.x to fix this issue. And that is exactly what ARC gcc 4.8 have. > > What compiler versions are most commonly used these days? gcc 4.8 is used in production, but internally we are now moving towards 6.0 (to be officially released soon) > You should probably stay with the version that most people have > and then update either the compiler or the kernel, whichever > diverges from it. In this case, the issue is simple - gcc 6.x doesn't behave the same as 4.8 so it needs fixing. > I see in the gcc git log that the version that had "int" got removed > at some point, and the version that had "unsigned int" was added > later. The upstream version (per initial port) always had #define SIZE_TYPE "long unsigned int" which we fixed out-of-tree for 4.8 and this needs to be fixed now for gcc 6.x in upstream too. -Vineet