From patchwork Wed Jun 17 06:30:47 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerin Jacob Kollanukkaran X-Patchwork-Id: 71662 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 26B5DA04A5; Wed, 17 Jun 2020 08:32:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 719731BF91; Wed, 17 Jun 2020 08:31:41 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 66E401BEDD for ; Wed, 17 Jun 2020 08:31:39 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 05H6U0e3010812; Tue, 16 Jun 2020 23:31:36 -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=6WniNnM/zU3FelM6Pgm15diGnEGg/U4fId/7E10F4CM=; b=hVazNioxbE56qLaFGl/oyIKhyMlEGCBOEaDr21bS9RnVTcBDzB54rOE6biugfHC+lTJC hCHS1DfS2SNlKobBvTbk1sLYCB8HsRgsMoy6Kt7QUqakWgXkUP9p3j+EpGjwME5lGCZD YhdWSJSL5F/3bjb5QDXcbMxQLhL3K/s+h/+jkVG6xJKANrsWk+VJb+iFSbaC7+3zeprx oF4XfV431RfTgZ58ULjFFa39GmbaZi7cfiQ5BznV6i6Y0In5E8vusqPVvf6OigTaiwdB n74sajsSGgGI24N7g6SyaNT7esj73b+tCY2/6+lItpm/5O3VkKMFpXXxYtWW+44deRRb cw== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0a-0016f401.pphosted.com with ESMTP id 31q676jksf-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 16 Jun 2020 23:31:36 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 16 Jun 2020 23:31:36 -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, 16 Jun 2020 23:31:36 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id D7A503F7041; Tue, 16 Jun 2020 23:31:32 -0700 (PDT) From: To: , Byron Marohn , Yipeng Wang , Sameh Gobriel , "Bruce Richardson" , Robert Sanford , Erik Gabriel Carrillo CC: , , , Jerin Jacob Date: Wed, 17 Jun 2020 12:00:47 +0530 Message-ID: <20200617063047.1555518-14-jerinj@marvell.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200617063047.1555518-1-jerinj@marvell.com> References: <20200617063047.1555518-1-jerinj@marvell.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.216, 18.0.687 definitions=2020-06-16_13:2020-06-16, 2020-06-16 signatures=0 Subject: [dpdk-dev] [PATCH 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 --- 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)