From patchwork Wed Feb 20 22:47:12 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dharmik Thakkar X-Patchwork-Id: 50403 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 36EF72862; Wed, 20 Feb 2019 23:48:23 +0100 (CET) Received: from foss.arm.com (foss.arm.com [217.140.101.70]) by dpdk.org (Postfix) with ESMTP id 0583520BD for ; Wed, 20 Feb 2019 23:48:22 +0100 (CET) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 653DCEBD; Wed, 20 Feb 2019 14:48:21 -0800 (PST) Received: from 2p2660v4-1.austin.arm.com (2p2660v4-1.austin.arm.com [10.118.12.58]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 234DA3F719; Wed, 20 Feb 2019 14:48:21 -0800 (PST) From: Dharmik Thakkar To: Bruce Richardson , Pablo de Lara Cc: dev@dpdk.org, Dharmik Thakkar Date: Wed, 20 Feb 2019 16:47:12 -0600 Message-Id: <20190220224714.16303-2-dharmik.thakkar@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190220224714.16303-1-dharmik.thakkar@arm.com> References: <20181129203112.12222-1-dharmik.thakkar@arm.com> <20190220224714.16303-1-dharmik.thakkar@arm.com> Subject: [dpdk-dev] [PATCH v2 1/3] test/hash: replace macro with log-level approach 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" Need to set hash log type to debug to print debug information, using following eal parameter: --log-type=hash,8 Change-Id: I19c56d6e79c0b6d5c20284be3576a80e6bcca920 Suggested-by: Thomas Monjalon Signed-off-by: Dharmik Thakkar Reviewed-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Phil Yang Reviewed-by: Ferruh Yigit --- v2: * Add Reviewed-by tag --- test/test/test_hash.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test/test_hash.c b/test/test/test_hash.c index fe607fadf262..67b8e54bdf13 100644 --- a/test/test/test_hash.c +++ b/test/test/test_hash.c @@ -80,14 +80,13 @@ static uint32_t pseudo_hash(__attribute__((unused)) const void *keys, return 3; } -#define UNIT_TEST_HASH_VERBOSE 0 /* * Print out result of unit test hash operation. */ static void print_key_info(const char *msg, const struct flow_key *key, int32_t pos) { - if (UNIT_TEST_HASH_VERBOSE) { + if (rte_log_get_level(RTE_LOGTYPE_HASH) == RTE_LOG_DEBUG) { const uint8_t *p = (const uint8_t *)key; unsigned int i;