From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 92CBD1B1FB; Wed, 11 Jul 2018 18:14:48 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Jul 2018 09:14:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,338,1526367600"; d="scan'208";a="73985995" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by orsmga002.jf.intel.com with ESMTP; 11 Jul 2018 09:14:31 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.26]) by IRSMSX109.ger.corp.intel.com ([169.254.13.124]) with mapi id 14.03.0319.002; Wed, 11 Jul 2018 17:14:30 +0100 From: "Daly, Lee" To: "De Lara Guarch, Pablo" CC: "dev@dpdk.org" , "stable@dpdk.org" Thread-Topic: [PATCH 1/3] compress/isal: fix logtype name Thread-Index: AQHUGSXLqStFW1WVAUypXGYKrast56SKMirg Date: Wed, 11 Jul 2018 16:14:30 +0000 Message-ID: References: <20180711063846.47189-1-pablo.de.lara.guarch@intel.com> In-Reply-To: <20180711063846.47189-1-pablo.de.lara.guarch@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZmI1MDdjOGUtODUwZS00ZTZiLWIxYjEtOWM0YWZiMjU4ZWRlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjIuNS4xOCIsIlRydXN0ZWRMYWJlbEhhc2giOiJvQW9JalhaOFh1UW03VXZ2UVdGN0E4bExcLzdvU0t1d1VsZWdjSDB1NjRNb01kbHZYM1ZyK2dMSXdpSUtGdE9CbSJ9 x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 1/3] compress/isal: fix logtype name 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: , X-List-Received-Date: Wed, 11 Jul 2018 16:14:49 -0000 > -----Original Message----- > From: De Lara Guarch, Pablo > Sent: Wednesday, July 11, 2018 7:39 AM > To: Daly, Lee > Cc: dev@dpdk.org; De Lara Guarch, Pablo ; > stable@dpdk.org > Subject: [PATCH 1/3] compress/isal: fix logtype name >=20 > There is a naming convention for logtypes of PMDs: > "pmd.driverType.driverName". > Therefore, the logtype for ISA-L PMD should be "pmd.compress.isal". >=20 > Fixes: 490e725b95b2 ("compress/isal: add device init and de-init") > Cc: stable@dpdk.org >=20 > Signed-off-by: Pablo de Lara > --- > drivers/compress/isal/isal_compress_pmd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/drivers/compress/isal/isal_compress_pmd.c > b/drivers/compress/isal/isal_compress_pmd.c > index 0f025a3bf..a3b28f29b 100644 > --- a/drivers/compress/isal/isal_compress_pmd.c > +++ b/drivers/compress/isal/isal_compress_pmd.c > @@ -465,7 +465,7 @@ RTE_INIT(isal_init_log); static void > isal_init_log(void) > { > - isal_logtype_driver =3D rte_log_register("comp_isal"); > + isal_logtype_driver =3D rte_log_register("pmd.compress.isal"); > if (isal_logtype_driver >=3D 0) > rte_log_set_level(isal_logtype_driver, RTE_LOG_INFO); } > -- > 2.14.4 Acked-by: Lee Daly