From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 8621E5581 for ; Fri, 15 Jul 2016 23:00:42 +0200 (CEST) Received: by mail-wm0-f51.google.com with SMTP id f65so39261665wmi.0 for ; Fri, 15 Jul 2016 14:00:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=4AqSw3iFX0m4PsAWrsoQszUzofooOCB6u3Ta/hwPLW4=; b=hvYhdIWqv/uOGd92piA0gicj93Za2WRwC0vTKxEVvz1Lpy/BYW63XC/3q1ego5qyeD JRkxrmUQ9V5EobNvVneOldJVEmtq8vjsfzFQ5/jFMGqfNumoOG9qaTFa4oOnBPKp43t6 rmtqVkc6YDL0wT2ACPyQIlDmsBlrbjO8NTnNBgdMRV+u7Fzc9vPXnW0r3EKSl0WjBSuN 1eAGLVYdUvTx3PXhMx2t0o6K1CJlqHKYdKFX/zUcxZZ5hAnJ6cYlnTA5EUvHIUyWlYT1 j/SMfbDJ6+Ru5kviA1Zfy/Fog0aNCKPe2X2gPR448bRWFMn60KGVadQjH//r4Y53nRSn LUqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=4AqSw3iFX0m4PsAWrsoQszUzofooOCB6u3Ta/hwPLW4=; b=lTspwT0G0qD53168kjkROsGvdWG86uBZvZ+s7UchJO2ay66Cqj02IUMfFw92TmVUOo lik11HR0xpuOkSMCtAWBeVF8ilC+196m8Xt1VMaeHUJk+biS4bsAS2nELqnINqFXIL3Y gnRlcrIHWokieQQomINkKviXbLYEU6shG+T6O5w3SCL9TXuaG9MBVJSi2EUkVR011FPO mwi6pdqjw6tbrU+AELmFIV1uCDrV6Rgp5dsmQX5fdXGa4V4fmsevKl3gGYRyiiUMnvhm nh5HBCOqlJzxVx0jGRmR6KUh5T3SHnWfOsfsAQ16/U9AJ7zlkIAQZwgal1G92Zh0DYA9 56dQ== X-Gm-Message-State: ALyK8tLFsV6xVenQlYWu7nDM8b2VF/vbxntwJrILQYtgJb13pa4qL7m5I73xabFXj0Y14+hW X-Received: by 10.28.229.19 with SMTP id c19mr13477008wmh.0.1468616442341; Fri, 15 Jul 2016 14:00:42 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id m5sm2380431wmm.10.2016.07.15.14.00.41 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Jul 2016 14:00:41 -0700 (PDT) From: Thomas Monjalon To: Olga Shern Cc: dev@dpdk.org, Adrien Mazarguil Date: Fri, 15 Jul 2016 23:00:40 +0200 Message-ID: <4351464.EB90HY8EQ2@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1468420402-27477-1-git-send-email-adrien.mazarguil@6wind.com> References: <1468420402-27477-1-git-send-email-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] net/mlx5: work around compilation issue X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2016 21:00:42 -0000 2016-07-13 16:33, Adrien Mazarguil: > From: Olga Shern > > RHEL 7.1's GCC for POWER8 reports the following error in one rte_memcpy() > macro call by mlx5: > > error: array subscript is above array bounds [-Werror=array-bounds] > > It appears to be a GCC bug which can be worked around by making parentheses > more explicit. > > Signed-off-by: Olga Shern > Signed-off-by: Adrien Mazarguil Applied, thanks