From patchwork Wed Dec 8 18:59:57 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Zhou X-Patchwork-Id: 105034 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 24814A00C2; Wed, 8 Dec 2021 20:00:51 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B287742710; Wed, 8 Dec 2021 20:00:16 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 858914114F for ; Wed, 8 Dec 2021 20:00:07 +0100 (CET) Received: from linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net (linux.microsoft.com [13.77.154.182]) by linux.microsoft.com (Postfix) with ESMTPSA id 71EA620B718B; Wed, 8 Dec 2021 11:00:06 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 71EA620B718B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1638990006; bh=l7fE7rR5cUsqlFJr5f/Ru6P/9Q44hFOWSCOyg+D0ovE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nbkcqrengwESJH0OybtvBaWKCZdqk4kT4nc7ksmN2gGJtmAb5cNL/BkINMg0UaO8j RIPQL8k1isjfLQE3s2Bw5IrMlWuMOXclSia83dtiG4IzHQjyCLYhXXyre06mA6KXLZ YeO4l4UD/EuhNF7j7ljPvSDJl50pDD5vlUArEF3w= From: Jie Zhou To: dev@dpdk.org Cc: dmitry.kozliuk@gmail.com, bruce.richardson@intel.com, roretzla@microsoft.com, navasile@linux.microsoft.com, dmitrym@microsoft.com, pallavi.kadam@intel.com, talshn@nvidia.com, thomas@monjalon.net, aconole@redhat.com Subject: [PATCH v14 08/11] app/test: resolve name collision Date: Wed, 8 Dec 2021 10:59:57 -0800 Message-Id: <1638990000-3228-9-git-send-email-jizh@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1638990000-3228-1-git-send-email-jizh@linux.microsoft.com> References: <1638928262-13177-1-git-send-email-jizh@linux.microsoft.com> <1638990000-3228-1-git-send-email-jizh@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add OP_ prefix to resolve name collision to enable hash_perf test Signed-off-by: Jie Zhou Acked-by: Dmitry Kozlyuk --- app/test/test_hash_perf.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/test/test_hash_perf.c b/app/test/test_hash_perf.c index 76cdac5d53..7e98ec3964 100644 --- a/app/test/test_hash_perf.c +++ b/app/test/test_hash_perf.c @@ -30,10 +30,10 @@ #define BURST_SIZE 16 enum operations { - ADD = 0, - LOOKUP, - LOOKUP_MULTI, - DELETE, + OP_ADD = 0, + OP_LOOKUP, + OP_LOOKUP_MULTI, + OP_DELETE, NUM_OPERATIONS }; @@ -308,7 +308,7 @@ timed_adds(unsigned int with_hash, unsigned int with_data, const uint64_t end_tsc = rte_rdtsc(); const uint64_t time_taken = end_tsc - start_tsc; - cycles[table_index][ADD][with_hash][with_data] = time_taken/keys_to_add; + cycles[table_index][OP_ADD][with_hash][with_data] = time_taken/keys_to_add; return 0; } @@ -385,7 +385,7 @@ timed_lookups(unsigned int with_hash, unsigned int with_data, const uint64_t end_tsc = rte_rdtsc(); const uint64_t time_taken = end_tsc - start_tsc; - cycles[table_index][LOOKUP][with_hash][with_data] = time_taken/num_lookups; + cycles[table_index][OP_LOOKUP][with_hash][with_data] = time_taken/num_lookups; return 0; } @@ -511,7 +511,7 @@ timed_lookups_multi(unsigned int with_hash, unsigned int with_data, const uint64_t end_tsc = rte_rdtsc(); const uint64_t time_taken = end_tsc - start_tsc; - cycles[table_index][LOOKUP_MULTI][with_hash][with_data] = + cycles[table_index][OP_LOOKUP_MULTI][with_hash][with_data] = time_taken/num_lookups; return 0; @@ -550,7 +550,7 @@ timed_deletes(unsigned int with_hash, unsigned int with_data, const uint64_t end_tsc = rte_rdtsc(); const uint64_t time_taken = end_tsc - start_tsc; - cycles[table_index][DELETE][with_hash][with_data] = time_taken/keys_to_add; + cycles[table_index][OP_DELETE][with_hash][with_data] = time_taken/keys_to_add; return 0; }