From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id AF6FB2E81 for ; Fri, 26 Oct 2018 00:04:26 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 4795421FAC; Thu, 25 Oct 2018 18:04:26 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 25 Oct 2018 18:04:26 -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=nOczz1Df/DLPfs7dq6M/M7zU+rxrTRogXYHwk1hT5QM=; b=q574e8YKx+YA qXBGMYksjz0EdDQ2t8xa8yeDiV2Mw0S2tHSqD61IPf+qLkcctx9dL8u4mTrXnvbm ytXW3L/MscHo6n5DRQO615PZJo9Dc7piN25C9xjUUo2nUxKvmB5Mp9q7Y1IvBJEH NTXmjSWgI93ulwB1AGNX8WeRrT84mfc= 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=fm1; bh=nOczz1Df/DLPfs7dq6M/M7zU+rxrTRogXYHwk1hT5 QM=; b=WzttEmGFyox9LcVNct5ktHJeoTss0LHiXZBz68bpvR08LMbyrLANCw5rI 0SsYnmIhPBMPIevfCzibqan/k86Xff5XIhQkZoYdFunznJ/JX191fHhNCklstygy 4+F5X5XQhM0t3QyFl/RVwfZEA56wolZApS8FZWMh/qafCOGwr+wvGQJgMCVP4bXu 5TcdYK2xXOJ7LOKZ8Xe/JmR8FaPJCSmyjhPxOwUoTJqvWNbxPKAbmDpRjVgdJf67 xXaeHA6PQdqX+dJvzaK8FCuVyK7wFGBl9LcIRZ9CC6cA95DyBX/e65WKxhvSjheq Nxu5YZWTOD9zZ1DCVpW5ShIasVy8w== X-ME-Sender: 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 ADF9EE49EB; Thu, 25 Oct 2018 18:04:24 -0400 (EDT) From: Thomas Monjalon To: Yipeng Wang Cc: dev@dpdk.org, bruce.richardson@intel.com, honnappa.nagarahalli@arm.com, sameh.gobriel@intel.com Date: Fri, 26 Oct 2018 00:04:27 +0200 Message-ID: <5852730.k0t2O9qduM@xps> In-Reply-To: <1538143869-152808-1-git-send-email-yipeng1.wang@intel.com> References: <1537966465-248530-1-git-send-email-yipeng1.wang@intel.com> <1538143869-152808-1-git-send-email-yipeng1.wang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v4 0/5] hash: fix multiple issues 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: , X-List-Received-Date: Thu, 25 Oct 2018 22:04:27 -0000 28/09/2018 16:11, Yipeng Wang: > This patch set was part of extendable hash table patch > set before V2. According to Bruce's comment, this patch set > is now separated from the original patch set for easier > review and merge. > https://mails.dpdk.org/archives/dev/2018-September/112555.html > > This patch set fixes multiple issues/bugs from rte_hash and hash > unit test. > > V3->V4: > In first commit, per Honnappa's suggestion, added comment to explain > what value should BUCKET_SIZE be. > In third commit, fix a typo: "consecutive" > > V2->V3: > As Bruce suggested: > Added a new commit to add missing file into meson.build for readwrite test. > Revised the commit message for the last commit. > > Yipeng Wang (5): > test/hash: fix bucket size in hash perf test > test/hash: more accurate hash perf test output > test/hash: fix rw test with non-consecutive cores > test/hash: fix missing file in meson build file > hash: fix unused define Applied, thanks