From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 21FF75A55 for ; Tue, 21 Jul 2015 12:18:17 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP; 21 Jul 2015 03:18:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,515,1432623600"; d="scan'208";a="732654233" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga001.jf.intel.com with ESMTP; 21 Jul 2015 03:18:16 -0700 Received: from irsmsx112.ger.corp.intel.com (10.108.20.5) by irsmsx110.ger.corp.intel.com (163.33.3.25) with Microsoft SMTP Server (TLS) id 14.3.224.2; Tue, 21 Jul 2015 11:18:15 +0100 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.201]) by irsmsx112.ger.corp.intel.com ([169.254.1.163]) with mapi id 14.03.0224.002; Tue, 21 Jul 2015 11:18:15 +0100 From: "Iremonger, Bernard" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH v5 1/3] bonding: add support for PCI Port Hotplug Thread-Index: AQHQwass6Oi82yHAak2i7FmrqAlrYp3luW5w Date: Tue, 21 Jul 2015 10:18:14 +0000 Message-ID: <8CEF83825BEC744B83065625E567D7C204A4A7C2@IRSMSX108.ger.corp.intel.com> References: <1436974331-8471-2-git-send-email-bernard.iremonger@intel.com> <3084842.dthB9sZi1g@xps13> In-Reply-To: <3084842.dthB9sZi1g@xps13> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v5 1/3] bonding: add support for PCI Port Hotplug 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: Tue, 21 Jul 2015 10:18:18 -0000 Hi Thomas, > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Saturday, July 18, 2015 9:40 PM > To: Iremonger, Bernard > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v5 1/3] bonding: add support for PCI Port > Hotplug >=20 > 2015-07-15 16:32, Bernard Iremonger: > > This patch depends on the Port Hotplug Framework. > > It implements the rte_dev_uninit_t() function for the link bonding pmd. > > > > Signed-off-by: Bernard Iremonger > > --- > > drivers/net/bonding/rte_eth_bond.h | 13 ++++- > > drivers/net/bonding/rte_eth_bond_api.c | 78 +++++++++++++++++++- > ---------- > > drivers/net/bonding/rte_eth_bond_pmd.c | 23 ++++++++- > > drivers/net/bonding/rte_eth_bond_private.h | 7 ++- > [...] > > --- a/drivers/net/bonding/rte_eth_bond.h > > +++ b/drivers/net/bonding/rte_eth_bond.h > > /** > > + * Free a bonded rte_eth_dev device > > + * > > + * @param name Name of the link bonding device. > > + * > > + * @return > > + * 0 on success, negative value otherwise > > + */ > > +int > > +rte_eth_bond_free(const char *name); >=20 > Why it is not exported in .map? This is an oversight, I will set a v6 patch set.=20 Regards, Bernard.