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 63172A04FA; Mon, 3 Feb 2020 20:49:27 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A1C7D1BFB0; Mon, 3 Feb 2020 20:49:26 +0100 (CET) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by dpdk.org (Postfix) with ESMTP id 494CC1BFA3 for ; Mon, 3 Feb 2020 20:49:25 +0100 (CET) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8B57D101E; Mon, 3 Feb 2020 11:49:24 -0800 (PST) Received: from qc2400f-1.austin.arm.com (qc2400f-1.austin.arm.com [10.118.14.48]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 783AF3F52E; Mon, 3 Feb 2020 11:49:24 -0800 (PST) From: Honnappa Nagarahalli To: agupta3@marvell.com, yipeng1.wang@intel.com, sameh.gobriel@intel.com, honnappa.nagarahalli@arm.com Cc: thomas@monjalon.net, david.marchand@redhat.com, dev@dpdk.org, nd@arm.com Date: Mon, 3 Feb 2020 13:49:07 -0600 Message-Id: <20200203194912.4669-1-honnappa.nagarahalli@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <1567748973-24192-1-git-send-email-agupta3@marvell.com> References: <1567748973-24192-1-git-send-email-agupta3@marvell.com> Subject: [dpdk-dev] [PATCH v2 0/5] test/meson: fix hash readwrite timeout failure 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" V2 changes: - Remove duplicated code in the existing patch - Add lock-free option to hash read-write functional test cases - Move existing loack-free test cases to performance tests - A typo fix in the comments for lock-free extendable table feature V1 changes: - hash_readwrite and hash_readwrite lockfree meson test was taking longer time to complete. The test always get TIMEOUT. - hash readwrtie test is split into functional and perf tests and moved to dpdk fast and perf testsuite accordingly. - hash readwrite lockfree is moved to dpdk perf testsuite. Amit Gupta (1): test/meson: hash test split into shorter subtests Honnappa Nagarahalli (4): test/hash: remove duplicated test code test/hash: add lock free reader writer functional tests test/hash: move reader writer lock free tests to perf tests hash: correct lock free extendable table support app/test/Makefile | 2 +- app/test/autotest_data.py | 14 ++- app/test/meson.build | 7 +- app/test/test_hash_readwrite.c | 117 +++++++++++++----- ...ite_lf.c => test_hash_readwrite_lf_perf.c} | 7 +- lib/librte_hash/rte_hash.h | 2 - 6 files changed, 107 insertions(+), 42 deletions(-) rename app/test/{test_hash_readwrite_lf.c => test_hash_readwrite_lf_perf.c} (99%) -- 2.17.1