From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 1D5622935 for ; Fri, 21 Oct 2016 20:31:44 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP; 21 Oct 2016 11:31:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,526,1473145200"; d="scan'208";a="892570942" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga003.jf.intel.com with ESMTP; 21 Oct 2016 11:31:43 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.210]) by irsmsx110.ger.corp.intel.com ([163.33.3.25]) with mapi id 14.03.0248.002; Fri, 21 Oct 2016 19:31:42 +0100 From: "De Lara Guarch, Pablo" To: Jan Blunck , "dev@dpdk.org" CC: "thomas.monjalon@6wind.com" , "yuanhan.liu@linux.intel.com" , "Mcnamara, John" Thread-Topic: [PATCH 1/2] drivers: add name alias registration for rte_driver Thread-Index: AQHSKrWHQUKS+EQ300OL3ecoTO5KvKCzPDjQ Date: Fri, 21 Oct 2016 18:31:41 +0000 Message-ID: References: <1476956223-30308-1-git-send-email-jblunck@infradead.org> In-Reply-To: <1476956223-30308-1-git-send-email-jblunck@infradead.org> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDJkYzZiOTAtYTUxOS00YmY4LTg4MjMtZThhMGMwNDJjZmMyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IksyZlwvVytOUlg1MldCZlNCSVZPbFF4QUNxTVUwQ3A4Z0hSRStoTndoRnp3PSJ9 x-ctpclassification: CTP_IC 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/2] drivers: add name alias registration for rte_driver X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Oct 2016 18:31:45 -0000 > -----Original Message----- > From: Jan Blunck [mailto:jblunck@gmail.com] On Behalf Of Jan Blunck > Sent: Thursday, October 20, 2016 2:37 AM > To: dev@dpdk.org > Cc: De Lara Guarch, Pablo; thomas.monjalon@6wind.com; > yuanhan.liu@linux.intel.com; Mcnamara, John > Subject: [PATCH 1/2] drivers: add name alias registration for rte_driver >=20 > This adds infrastructure for drivers to allow being requested by an alias > so that a renamed driver can still get loaded by its legacy name. >=20 > Signed-off-by: Jan Blunck Hi Jan, I saw two checkpatch errors in this patch that should be fixed: ERROR: "foo * bar" should be "foo *bar" #55: FILE: lib/librte_eal/common/include/rte_vdev.h:86: +static const char * vdrvinit_ ## nm ## _alias;\ ERROR: "foo * bar" should be "foo *bar" #65: FILE: lib/librte_eal/common/include/rte_vdev.h:96: +static const char * vdrvinit_ ## nm ## _alias =3D RTE_STR(alias) total: 2 errors, 0 warnings, 39 lines checked Thanks, Pablo