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 E00F3A0350; Wed, 1 Jul 2020 06:01:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C9C981BF70; Wed, 1 Jul 2020 06:00:45 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 27DBD1BF70 for ; Wed, 1 Jul 2020 06:00:44 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 06140O7w022866; Tue, 30 Jun 2020 21:00:42 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=EtlVXDzFPPky1q3VN+51v8Zofg9499ReIUCA0DmEvek=; b=hyHx2oTZ9owO9XO22AyXfONYkvai8TYuKAt9El29l6ydjs5vbzOKiunvZSlmv1KX02be a/2gs6O3knTZLUaWdaGpRC19pEhWxbxsc3zqXr07XcWMTRFF9AZeMtXEvOgF/BzTCy8v Eo0mS+a6WLfRtYz6DGkBPjY/mLebYYP1L88Bex2hheYUT0UxY2YaLWv/qwW1ABe2pRac BT3O/mtN8rp9hxV8LMdz5VTYDNCyWTLxBnhLQtYy0jG0131p3Sgl6CAv2V5jfkZViCMC Ux0erWBopVJhusff9pWJpvSYBhugE7Kij9hHq32gvhmFC827+A9vc7S6zR9vBgaILncQ mQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0b-0016f401.pphosted.com with ESMTP id 31x5mnps7a-4 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 30 Jun 2020 21:00:41 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 30 Jun 2020 21:00:31 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 30 Jun 2020 21:00:30 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Tue, 30 Jun 2020 21:00:30 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id 64FBB3F703F; Tue, 30 Jun 2020 21:00:26 -0700 (PDT) From: To: , Byron Marohn , Yipeng Wang , Sameh Gobriel , "Bruce Richardson" , Robert Sanford , Erik Gabriel Carrillo CC: , , , , , Jerin Jacob Date: Wed, 1 Jul 2020 09:28:40 +0530 Message-ID: <20200701035840.4028056-14-jerinj@marvell.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200701035840.4028056-1-jerinj@marvell.com> References: <20200617063047.1555518-1-jerinj@marvell.com> <20200701035840.4028056-1-jerinj@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.235, 18.0.687 definitions=2020-07-01_01:2020-07-01, 2020-06-30 signatures=0 Subject: [dpdk-dev] [PATCH v2 13/13] app/test: use log register macro 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" From: Jerin Jacob Use log register macro to avoid the code duplication in the log registration process. Signed-off-by: Jerin Jacob Acked-by: Adam Dybkowski --- app/test/test_efd.c | 6 +----- app/test/test_hash.c | 7 +------ app/test/test_timer_racecond.c | 7 +------ 3 files changed, 3 insertions(+), 17 deletions(-) diff --git a/app/test/test_efd.c b/app/test/test_efd.c index e3e5e30ea..3d9aa8a57 100644 --- a/app/test/test_efd.c +++ b/app/test/test_efd.c @@ -32,12 +32,8 @@ struct flow_key { uint8_t proto; } __rte_packed; -int efd_logtype_test; -RTE_INIT(test_efd_init_log) -{ - efd_logtype_test = rte_log_register("test.efd"); -} +RTE_LOG_REGISTER(efd_logtype_test, test.efd, INFO); /* * Print out result of unit test efd operation. diff --git a/app/test/test_hash.c b/app/test/test_hash.c index afa3a1a3c..990a1815f 100644 --- a/app/test/test_hash.c +++ b/app/test/test_hash.c @@ -69,8 +69,6 @@ struct flow_key { uint8_t proto; } __rte_packed; -int hash_logtype_test; - /* * Hash function that always returns the same value, to easily test what * happens when a bucket is full. @@ -82,10 +80,7 @@ static uint32_t pseudo_hash(__rte_unused const void *keys, return 3; } -RTE_INIT(test_hash_init_log) -{ - hash_logtype_test = rte_log_register("test.hash"); -} +RTE_LOG_REGISTER(hash_logtype_test, test.hash, INFO); /* * Print out result of unit test hash operation. diff --git a/app/test/test_timer_racecond.c b/app/test/test_timer_racecond.c index 4fc917995..28af9ca76 100644 --- a/app/test/test_timer_racecond.c +++ b/app/test/test_timer_racecond.c @@ -61,12 +61,7 @@ static volatile unsigned stop_slaves; static int reload_timer(struct rte_timer *tim); -int timer_logtype_test; - -RTE_INIT(test_timer_init_log) -{ - timer_logtype_test = rte_log_register("test.timer"); -} +RTE_LOG_REGISTER(timer_logtype_test, test.timer, INFO); static void timer_cb(struct rte_timer *tim, void *arg __rte_unused) -- 2.27.0