From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v2 0/4] fix compilation on Fedora 22 Date: Wed, 03 Jun 2015 16:13:31 +0200 Message-ID: <4565326.RtEG7ryMY9@xps13> References: <1432904027-6578-1-git-send-email-bruce.richardson@intel.com> <1432910056-6946-1-git-send-email-bruce.richardson@intel.com> <20150529165755.GD29575@hmsreliant.think-freely.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, neil.horman@tuxdriver.com To: Bruce Richardson Return-path: Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by dpdk.org (Postfix) with ESMTP id E8E2B5A35 for ; Wed, 3 Jun 2015 16:14:21 +0200 (CEST) Received: by wibut5 with SMTP id ut5so104303096wib.1 for ; Wed, 03 Jun 2015 07:14:21 -0700 (PDT) In-Reply-To: <20150529165755.GD29575@hmsreliant.think-freely.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2015-05-29 12:57, Neil Horman: > On Fri, May 29, 2015 at 03:34:12PM +0100, Bruce Richardson wrote: > > V2 Changes: > > * use RTE_MIN instead of additional comparison checks > > in some loops, as suggested by Neil. > > * For stats reset in null PMD, just use the size of the > > array [which is 1] in place of the used queue counts. > > > > GCC version 5.1 included with Fedora 22 is running stricter array > > bounds checks which are throwing up errors in a number of components > > in the DPDK code. This patchset fixes these errors to allow compilation > > with GCC on Fedora 22. > > > > Example error: > > == Build lib/librte_eal/linuxapp/eal > > CC eal_memory.o > > /home/bruce/dpdk.org/lib/librte_eal/linuxapp/eal/eal_memory.c: In function 'rte_eal_hugepage_init': > > /home/bruce/dpdk.org/lib/librte_eal/linuxapp/eal/eal_memory.c:1193:35: error: array subscript is above array bounds [-Werror=array-bounds] > > internal_config.hugepage_info[j].hugepage_sz) { > > ^ > > compilation terminated due to -Wfatal-errors. > > > > Bruce Richardson (4): > > eal: fix compile on Fedora 22 (GCC 5.1) > > ip_frag: fix compile on Fedora 22 (GCC 5.1) > > i40e: fix compile on Fedora 22 (GCC 5.1) > > null: fix compile on Fedora 22 (GCC 5.1) > > Series > Acked-by: Neil Horman Applied, thanks