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 26738A0588; Thu, 16 Apr 2020 11:47:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DF1741DBA4; Thu, 16 Apr 2020 11:47:07 +0200 (CEST) Received: from wout1-smtp.messagingengine.com (wout1-smtp.messagingengine.com [64.147.123.24]) by dpdk.org (Postfix) with ESMTP id 1873C1DBA3 for ; Thu, 16 Apr 2020 11:47:06 +0200 (CEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.west.internal (Postfix) with ESMTP id EB4AC603; Thu, 16 Apr 2020 05:47:04 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute7.internal (MEProxy); Thu, 16 Apr 2020 05:47:05 -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=ul0NlMPA6wMCY2N53w0XTeRbHwFC/JhX/Xs68HRVNvQ=; b=iKi0xERWHkW5 zQfsYVuM0eaf3wthCzTQSGID8f/rSAxTWZ7eU9lay7kqUH+wuOBI+Yo7HyVgiCHQ iJyR4RL/TLxakRkhzdZnREsMpK+016sSFuvh0EA/3dohErnFi/wR4kGFjTb7Sg9F JnDVQEZVDXNhmey0nk88Ge6r92Mm7NA= 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=ul0NlMPA6wMCY2N53w0XTeRbHwFC/JhX/Xs68HRVN vQ=; b=0qcVEJYOMsxes4jOezyt1M2OS0STSogVCCBmEcKOf3YvG5vBdKmM9o83q FBRVHjcT83TOU5G4eKUuWg7/pZluKOb+tKE3SE5iEjumMl+LiQGeWQK4j8ElYHNC IFHBLa96bbQCLzDaSpMufwB44wbwYYW7oT042QvpDQjDRk8plgf+fJnKsesf4e7r sBkAPeAPhqsYu0yEblh6UJLNevpnY3D+i0oflbox13uItx1+sc5ob5vNsBBNn1yx y5p2qZKxUvSmGwrDKQWXVWhGdJKYFFc2WkHLeutPXT0AIFuOrgMpX8tw2w2kgiO5 TTRlkib7ayLgrSOrja0pNcxDz+X+g== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrfeehgddvtdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgepudenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth 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 A44783060076; Thu, 16 Apr 2020 05:47:03 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: yipeng1.wang@intel.com, sameh.gobriel@intel.com, bruce.richardson@intel.com, Vladimir Medvedkin Date: Thu, 16 Apr 2020 11:47:01 +0200 Message-ID: <4999224.FjKLVJYuhi@thomas> In-Reply-To: <1586370739-61729-1-git-send-email-vladimir.medvedkin@intel.com> References: <1585241243-339118-1-git-send-email-vladimir.medvedkin@intel.com> <1586370739-61729-1-git-send-email-vladimir.medvedkin@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 1/2] hash: add hash bulk lookup with hash signatures array 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" Ping for review, please. 08/04/2020 20:32, Vladimir Medvedkin: > Implement rte_hash_lookup_with_hash_bulk_data() - lookup > function with precomputed hash signatures. > > Signed-off-by: Vladimir Medvedkin > --- > lib/librte_hash/rte_cuckoo_hash.c | 309 ++++++++++++++++++++++++----------- > lib/librte_hash/rte_hash.h | 55 +++++++ > lib/librte_hash/rte_hash_version.map | 2 + > 3 files changed, 269 insertions(+), 97 deletions(-)