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 7F118A0487 for ; Fri, 5 Jul 2019 15:01:20 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7CCE11BEA6; Fri, 5 Jul 2019 15:01:19 +0200 (CEST) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id B45371BE9E for ; Fri, 5 Jul 2019 15:01:17 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 4D1102104C; Fri, 5 Jul 2019 09:01:17 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Fri, 05 Jul 2019 09:01:17 -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=ahuCoKFBYZQTG2KTnNlZV6J6RwwtBFrQwYNYp+VsT8E=; b=GEsd8O2dFpRB BRZSp6xpAJSc67RtFP2CNBCesV6L04zNNpu+ZiDHTqlMwAJVSUbtKo1OyAaUIeoR rOQETfdZs2dUUiv0Fxhye8Dk+TvRPC9eJPPXJiJqmucnlTTeEeLCIVx78juQ+8Xt psWZBSvqBkKkVdDo3JRMhZxgUEJk/xg= 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=ahuCoKFBYZQTG2KTnNlZV6J6RwwtBFrQwYNYp+VsT 8E=; b=MGUqcCWUpZM0g3bkdM4OsHQlANi+PB5nxmT2fTDDi2MEppT58FXE1w1yS mH2IDz5snJIHLyU5Y9a0leMDYdi8KpEFsK/Zblloh1XoANx0VXKkgFzFRaeZCBff 9XLe42pmqP1IMk/5DAN6azKrxoMW7LXT00Dx2n6AsT+EP4eyTLc9NR1O1bIeLAUc rr+1y+iJFv5WVwuKOcBWUrNQdhnReYVo1fMk+X9IDSCTGSMU7U+CTgPO39ErlYxj YXfb4n7uS+Hu7R3FUWYge/mxXm7Vn59TU8TgBLgMSFWynh0n3YOU3YQxJ7oodknJ xRnvaKM9q9ioJyiiRJs/8E8Fy4ebg== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrfeeggdehlecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhho mhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd 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 57335380083; Fri, 5 Jul 2019 09:01:15 -0400 (EDT) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org, "Burakov, Anatoly" Date: Fri, 05 Jul 2019 15:01:13 +0200 Message-ID: <2141654.sEVcCxZroT@xps> In-Reply-To: References: <20190705115424.11172-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] raw/ioat: fix issue with icc 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" 05/07/2019 14:33, Burakov, Anatoly: > On 05-Jul-19 12:54 PM, Bruce Richardson wrote: > > When using _mm_set_epi64() rather than _mm_set_epi64x() intrinsic, ICC > > tries to use the x87 floating point registers, leading to warnings about > > not properly clearing value when switching between x87 and SSE/AVX modes. > > > > error #13203: No EMMS instruction before call to function > > > > Fix this by using the set64x() intrinsic. > > > > Fixes: 0a92e63fc4cd ("raw/ioat: add local API to perform copies") > > > > Signed-off-by: Bruce Richardson > > Tested-by: Anatoly Burakov Applied, thanks