From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 9BD8910A3; Fri, 13 Jul 2018 16:40:38 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Jul 2018 07:40:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,347,1526367600"; d="scan'208";a="54799104" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by fmsmga008.fm.intel.com with ESMTP; 13 Jul 2018 07:40:25 -0700 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.193]) by IRSMSX151.ger.corp.intel.com ([169.254.4.36]) with mapi id 14.03.0319.002; Fri, 13 Jul 2018 15:40:24 +0100 From: "De Lara Guarch, Pablo" To: "Daly, Lee" CC: "dev@dpdk.org" , "stable@dpdk.org" Thread-Topic: [PATCH 1/3] compress/isal: fix logtype name Thread-Index: AQHUGTI/Z7OZB8vkL0mLpmsAk86IjqSNPF/A Date: Fri, 13 Jul 2018 14:40:23 +0000 Message-ID: References: <20180711063846.47189-1-pablo.de.lara.guarch@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZmI1MDdjOGUtODUwZS00ZTZiLWIxYjEtOWM0YWZiMjU4ZWRlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoib0FvSWpYWjhYdVFtN1V2dlFXRjdBOGxMXC83b1NLdXdVbGVnY0gwdTY0TW9NZGx2WDNWcitnTEl3aUlLRnRPQm0ifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-originating-ip: [163.33.239.181] 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: Fri, 13 Jul 2018 14:40:39 -0000 > -----Original Message----- > From: Daly, Lee > Sent: Wednesday, July 11, 2018 5:15 PM > To: De Lara Guarch, Pablo > Cc: dev@dpdk.org; stable@dpdk.org > Subject: RE: [PATCH 1/3] compress/isal: fix logtype name >=20 >=20 >=20 > > -----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 > > > > There is a naming convention for logtypes of PMDs: > > "pmd.driverType.driverName". > > Therefore, the logtype for ISA-L PMD should be "pmd.compress.isal". > > > > Fixes: 490e725b95b2 ("compress/isal: add device init and de-init") > > Cc: stable@dpdk.org > > > > Signed-off-by: Pablo de Lara > > --- > > drivers/compress/isal/isal_compress_pmd.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > 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 Series applied to dpdk-next-crypto. Thanks, Pablo