From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 8C03CA0679 for ; Thu, 4 Apr 2019 15:22:24 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4DD9B1B1F8; Thu, 4 Apr 2019 15:22:24 +0200 (CEST) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 8BB7D1B115 for ; Thu, 4 Apr 2019 15:22:22 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 20FB722245; Thu, 4 Apr 2019 09:22:22 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 04 Apr 2019 09:22:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=wRGw7VQoMpElrVpb0IVcRYWiaBU/2z+4DwdSRkEbsTA=; b=OJvR97MtfjAd Spb7fOvijVDmbsQFdR/wAHPBJCKq3nLUWv822pMRpZdnOybWLhLFCqFOyiB4BkoX MVRX+fnEN3E4gNY2OO/Sw41gIT69rUnNTeHoixyJfbQfAANUjcgD+QRKz0MnXp/P FPziRsfpoVGchxGYrj3lffQdiLcQWSw= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=wRGw7VQoMpElrVpb0IVcRYWiaBU/2z+4DwdSRkEbs TA=; b=ZLCdzxhNY56EbCryZbA4xqx2oWhxH1c5knBQxmCt0MUgc3z/Xwxq6gGRx gUoBFBQtLam4JRIb3OClSbwCiYYi00DPdTlDoCFjz4qgwfufuOzLSoi/CdEBMQ0b bhYaFLTK5WjSYPl5YB3+I9Z7Atz6e/zPBTeKciocZs0F8tR39ZGrqPEczVlXyacO iHQ8+gZwoHt46WCFkC5m2iCBN7w+My94hqCzBeyPP3yo15+g3Dmq7VE4hlkeYAPA vRDplhRnFVRrXULD8dM66u4dS9NH9K0PW3s0idBG5b+DFGtEQ28PQMEyBAghGgFR jV/h1DkDQRNIp7fPoZYa8t5mMVTRA== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduuddrtdehgdeifeculddtuddrgedutddrtddtmd cutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdp uffrtefokffrpgfnqfghnecuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivg hnthhsucdlqddutddtmdenucfjughrpefhvffufffkjghfggfgtgesthhqredttddtjeen ucfhrhhomhepvfhhohhmrghsucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrg hlohhnrdhnvghtqeenucfkphepjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhep mhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsth gvrhfuihiivgeptd X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 79C55E452B; Thu, 4 Apr 2019 09:22:19 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: gage.eads@intel.com, Bruce Richardson , Konstantin Ananyev , Ferruh Yigit , david.marchand@redhat.com, alialnu@mellanox.com Date: Thu, 04 Apr 2019 15:22:18 +0200 Message-ID: <3998032.4XeIfXOuir@xps> In-Reply-To: <20190404130009.22042-1-thomas@monjalon.net> References: <20190404130009.22042-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] eal/x86: fix pedantic build 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Message-ID: <20190404132218.is1EMPrs90QUZRk9hGe9L1wjCYT_5a1THAfmonlwFag@z> 04/04/2019 15:00, Thomas Monjalon: > When enabling pedantic compilation with CONFIG_RTE_LIBRTE_MLX5_DEBUG, > the compiler complains about non standard 128-bit integer type: >=20 > include/rte_atomic_64.h:223:3: error: > ISO C does not support =E2=80=98__int128=E2=80=99 types [-Werror=3Dpedant= ic] >=20 > It must be marked as an extension of the standard C language > to be accepted in pedantic compilation. >=20 > Reported-by: Ferruh Yigit > Signed-off-by: Thomas Monjalon =46orgot one line: =46ixes: 640c5f09ef2c ("eal/x86: add 128-bit atomic compare exchange") Note: It seems only Ferruh can reproduce it. I wonder whether the RTE_STD_C11 of the union is hiding the issue.