From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v5 1/3] bonding: add support for PCI Port Hotplug Date: Sat, 18 Jul 2015 22:39:34 +0200 Message-ID: <3084842.dthB9sZi1g@xps13> References: <1436974331-8471-2-git-send-email-bernard.iremonger@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Bernard Iremonger Return-path: Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id A635E5A9B for ; Sun, 19 Jul 2015 00:43:28 +0200 (CEST) Received: by wgkl9 with SMTP id l9so105315134wgk.1 for ; Sat, 18 Jul 2015 15:43:28 -0700 (PDT) In-Reply-To: <1436974331-8471-2-git-send-email-bernard.iremonger@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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); Why it is not exported in .map?