From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f171.google.com (mail-wr0-f171.google.com [209.85.128.171]) by dpdk.org (Postfix) with ESMTP id D8C24326C for ; Wed, 5 Apr 2017 18:15:33 +0200 (CEST) Received: by mail-wr0-f171.google.com with SMTP id w11so20197449wrc.3 for ; Wed, 05 Apr 2017 09:15:33 -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=6/3PE2YZKE9V2s0LVGqY7UvhnZ2Zel+EarLU6ApaGuE=; b=KU0jvFCOIUWqhHL7GCjPcZDr0nbgexpDQyQ4rjRe7sdCU6FssJETWAUHBEB+CyLURS VWdrKrt4YcHZLWXMdLLhhpwlt12QN+J160+lG9IcNXrmos8Hb/kTjEyBUkNZNLb5gvo3 LmbpG7ypZKo2rKX+ce1333rVqSYSXLckKUVaWnYx9FSbV5qI6ylmwu3DKOlelD0YrfCR POYyzCtvrunbUn+edO1cMu0unuDwE6XHfuvn406ucmEOQec9YdX+pVjDOtLfnGRHCj6R cCSySt9LlcthUcJUvvVfeR1CqtC0CSyqff23PUJ2HZTbpM61bokS1gT6JpBIPuQoSHLg OAFw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=6/3PE2YZKE9V2s0LVGqY7UvhnZ2Zel+EarLU6ApaGuE=; b=jGHIR4W9rtPd4FCm4l+0+x5r1M4CuHsYpQy/yHvST+bOo9EsuiY5jJYF8vqxtpynBR V9lkPtwc3QX1BoRRdOxzKU8bwE6yJ93wD8QovOjJWk/ooNYSioxdfz/Z9/jponISF9+c vIcEPYwDiiS/bRPwKEcd0rxftZxCB0bVGw3qWn4+I+/bv2t7vsqljleVARg18ZBJ6RVC H6DHmqsu9Ho+UenhnutLNMZwlh3GaPaesBE+Vd+6/cJaDihCVa+q+MQNu1GY+JbIM6o0 7b7Lnd4KJa/FgzBhRcq6PGc3Z3v8Z34Lysyto+Zl/xpCjDYCymZkmsSxaTH4FGic8AS3 LjUg== X-Gm-Message-State: AFeK/H0cuShZTpOQJbw32GNCsY9lhwZuABRPlx9kpfCzklt8p7Gz9J55 /H/g74oFU7Su2jwsd/A= X-Received: by 10.28.1.209 with SMTP id 200mr20066501wmb.74.1491408931787; Wed, 05 Apr 2017 09:15:31 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id 55sm16046180wrz.27.2017.04.05.09.15.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 05 Apr 2017 09:15:30 -0700 (PDT) From: Thomas Monjalon To: Ferruh Yigit Cc: Bruce Richardson , dev@dpdk.org Date: Wed, 05 Apr 2017 18:15:29 +0200 Message-ID: <1515186.mOWQOvkDvU@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170405161354.GB15156@bricha3-MOBL3.ger.corp.intel.com> References: <20170405150312.20960-1-ferruh.yigit@intel.com> <20170405161354.GB15156@bricha3-MOBL3.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] ring: fix build with icc X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Apr 2017 16:15:34 -0000 2017-04-05 17:13, Bruce Richardson: > On Wed, Apr 05, 2017 at 04:03:12PM +0100, Ferruh Yigit wrote: > > build error: > > In file included from .../lib/librte_ring/rte_ring.c(90): > > .../lib/librte_ring/rte_ring.h(162): > > error #1366: a reduction in alignment without the "packed" attribute > > is ignored > > } __rte_cache_aligned; > > ^ > > > > Alignment attribute moved to first element of the struct > > > > Fixes: a6619414e0a9 ("ring: make struct and macros type agnostic") > > > > Signed-off-by: Ferruh Yigit > > --- > Patch looks ok to me > > Signed-off-by: Bruce Richardson Applied, thanks