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 A1D3FC5F2 for ; Thu, 25 Jun 2015 13:41:10 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 25 Jun 2015 04:41:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,675,1427785200"; d="scan'208";a="753012724" Received: from irsmsx153.ger.corp.intel.com ([163.33.192.75]) by orsmga002.jf.intel.com with ESMTP; 25 Jun 2015 04:41:09 -0700 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by IRSMSX153.ger.corp.intel.com (163.33.192.75) with Microsoft SMTP Server (TLS) id 14.3.224.2; Thu, 25 Jun 2015 12:41:08 +0100 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.245]) by irsmsx155.ger.corp.intel.com ([169.254.14.239]) with mapi id 14.03.0224.002; Thu, 25 Jun 2015 12:41:07 +0100 From: "Ananyev, Konstantin" To: "Iremonger, Bernard" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v5] ixgbe: changes to support PCI Port Hotplug Thread-Index: AQHQro/ByLrp2blxUUujjoA485rg2p29Gj4Q Date: Thu, 25 Jun 2015 11:41:07 +0000 Message-ID: <2601191342CEEE43887BDE71AB97725836A1DDD8@irsmsx105.ger.corp.intel.com> References: <1435158522-28547-1-git-send-email-bernard.iremonger@intel.com> In-Reply-To: <1435158522-28547-1-git-send-email-bernard.iremonger@intel.com> Accept-Language: en-IE, 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 Subject: Re: [dpdk-dev] [PATCH v5] ixgbe: changes to support 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: Thu, 25 Jun 2015 11:41:11 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bernard Iremonger > Sent: Wednesday, June 24, 2015 4:09 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v5] ixgbe: changes to support PCI Port Hotplug >=20 > This patch depends on the Port Hotplug Framework. > It implements the eth_dev_uninit functions for rte_ixgbe_pmd and > rte_ixgbevf_pmd. >=20 > Changes in V5: > Set nb_rx_queues and nb_tx_queues to 0 in uninit functions. > Rebased to latest ixgbe code. >=20 > Changes in V4: > Release rx and tx queues in dev_uninit() functions. > Replace TRUE and FALSE with 1 and 0. >=20 > Changes in V3: > Rebased to use drivers/net/ixgbe directory. >=20 > Changes in V2: > Added call to dev_close() in dev_uninit() functions. > Removed input parameter checks from dev_uninit() functions. >=20 > Signed-off-by: Bernard Iremonger > --- Acked-by: Konstantin Ananyev > 1.7.4.1