From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0F328A046B for ; Thu, 27 Jun 2019 18:04:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A482D37A2; Thu, 27 Jun 2019 18:04:33 +0200 (CEST) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 5E67E325F for ; Thu, 27 Jun 2019 18:04:32 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id DC71C2179E; Thu, 27 Jun 2019 12:04:31 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 27 Jun 2019 12:04:31 -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=7FE5jKdDqxJVBXfAJ6YxhB99/4dEBFIkgwAeD0UjgPY=; b=Ydrv55zfRD2m JCktcAykjpLnP81mNvBCs94XyN2gF0SlGL+WspWCRLJLhTWrWFdZKPE8UX5GAdgZ twT+KVHlC2OcmJP9zS2Sr6w1oTfdi9pI57/OPZLuYeiBfQd2EJdnY04wzEJecn5t 3Ks+4oowQtLgjYKWk/tL8roxRKB4Q9g= 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=fm3; bh=7FE5jKdDqxJVBXfAJ6YxhB99/4dEBFIkgwAeD0Ujg PY=; b=qcrpc2LFuc9Pxe23Vs57wKaML4eyIL8XIXMNv1OiMLFuEsYiTt6Gt33rq dlkXn+/WaNt9d3IwHoJ2IbxzQCi25wFGFraEBJwlXzKNxcxdpPqiPxIFJYds3wTb v47yiJJHmsonbVOxC2QRQdPBTfBfqXMK1mG45otnWGdl6YU6nLqyuO3eXtoV51W/ TIyitJm2ruArlJYKvomj8T4JUFFeZ8BUv+7jGBUz6VUI3pp6drvzUXi/kEXKurBv 4tUUWdp0KsQIP4h7kEP+xajtrK6XBos8QVUdDu+L+wJUFfQBKkWaO/cHzJRTgB/E DO1CM9L2vcrB2t/8caCpdqR7tZV3A== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrudekgdelkecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucffoh hmrghinhephhhurghrmhdrtghomhenucfkphepjeejrddufeegrddvtdefrddukeegnecu rfgrrhgrmhepmhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtne cuvehluhhsthgvrhfuihiivgeptd 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 18C4380062; Thu, 27 Jun 2019 12:04:29 -0400 (EDT) From: Thomas Monjalon To: Phil Yang Cc: dev@dpdk.org, "Eads, Gage" , "nd@arm.com" , "honnappa.nagarahalli@arm.com" , "gavin.hu@arm.com" Date: Thu, 27 Jun 2019 18:04:28 +0200 Message-ID: <11569262.ouo2XAOeyT@xps> In-Reply-To: <9184057F7FC11744A2107296B6B8EB1E68CFB92A@FMSMSX108.amr.corp.intel.com> References: <1560531283-5229-1-git-send-email-phil.yang@arm.com> <1560757290-22238-1-git-send-email-phil.yang@arm.com> <9184057F7FC11744A2107296B6B8EB1E68CFB92A@FMSMSX108.amr.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] eal/stack: fix 'pointer-sign' warning 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" Title changed to "stack: fix sign of list length" (it does not belong to EAL) 18/06/2019 17:43, Eads, Gage: > > clang raise 'pointer-sign' warnings in __atomic_compare_exchange when > > passing 'uint64_t *' to parameter of type 'int64_t *' converts between > > pointers to integer types with different sign. > > > > Fixes: 7e6e609939a8 ("stack: add C11 atomic implementation") Cc: stable@dpdk.org > > Suggested-by: Gage Eads > > Signed-off-by: Phil Yang > > Reviewed-by: Honnappa Nagarahalli > > Reviewed-by: Gavin Hu > > Acked-By: Gage Eads Applied, thanks