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 8FB76A0096 for ; Wed, 10 Apr 2019 22:05:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 559231B3A3; Wed, 10 Apr 2019 22:05:55 +0200 (CEST) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 1D07F1B146; Wed, 10 Apr 2019 22:05:54 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9E9A321A29; Wed, 10 Apr 2019 16:05:52 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Wed, 10 Apr 2019 16:05:52 -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=pSetJwDOGC9jVnu4Rf6ianft1ieIIWi/rLyyY/h5hIs=; b=Kj+CXPtvTj/H GNQMtRDGWDPYPOSnrYwpyHVnF+ebRcAg7h+fbuXfb74YQkoGxsiQ9U65MuFHWEVh XRMU+MFS6jmErQCpzir5kpWdP+DM5x5iC1m9wCafuxsCsL0NUHcAeBzsAe63KpGf SIT+6Kuox0ZUNYlVgYK2NFvrQObcw+8= 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=pSetJwDOGC9jVnu4Rf6ianft1ieIIWi/rLyyY/h5h Is=; b=nN24f1w5rGxaafxqTZhzDdiQfEFEhcLOFcyS4qp1j3/q19lkQp/6p8R4U wtrIYFxUjknUZ1u+QXqr1tv38NQbHfvR1c+EvDmTMukFtWr/MTxgd/nDLDuZTUOS pNRKZGbWGrOQOiK7m9Cv76w5QqJi365ydN7bfPCVWZMo7JgLL5R1xYFDoI5P7W8n C4KINItM4RCbu/+ZRnvUxluRPfgewtvnYCB/yXiBEG9PK4SfxFVdje6IPqk34ivE 37oorto+wxEGNIs9rPJzWL3fsNPoUJ7Xhv2Fdc0n4a34kQsJZatKwIxE0X+LiF5X I2ZfgJTSUoIoxYHogOTgiTuBRnsOw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduuddrudejgddugeejucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukf hppeejjedrudefgedrvddtfedrudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhh ohhmrghssehmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt 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 BF44010380; Wed, 10 Apr 2019 16:05:50 -0400 (EDT) From: Thomas Monjalon To: Jerin Jacob Kollanukkaran Cc: dev@dpdk.org, "Dumitrescu, Cristian" , Gavin Hu , "stable@dpdk.org" Date: Wed, 10 Apr 2019 22:05:47 +0200 Message-ID: <2053312.VpVDxaF4GN@xps> In-Reply-To: <3EB4FA525960D640B5BDFFD6A3D891268E8727D3@IRSMSX108.ger.corp.intel.com> References: <20190406132852.14862-1-jerinj@marvell.com> <3EB4FA525960D640B5BDFFD6A3D891268E8727D3@IRSMSX108.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function selection 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: <20190410200547.WhuYti7G73TgDUQJXTJ0qQOBY87ml-cGppslmBS6odI@z> > > From: Jerin Jacob > > > > Use CRC32 instruction only when it is available to avoid > > the build issue like below. > > > > {standard input}:16: Error: > > selected processor does not support `crc32cx w3,w3,x0' > > > > Fixes: ea7be0a0386e ("lib/librte_table: add hash function headers") > > Cc: Gavin Hu > > Cc: stable@dpdk.org > > > > Signed-off-by: Jerin Jacob > > Acked-by: Cristian Dumitrescu Applied, thanks