From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com
 [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id F100B2BE1
 for <dev@dpdk.org>; Fri, 30 Jun 2017 11:59:22 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 974B720D05;
 Fri, 30 Jun 2017 05:59:22 -0400 (EDT)
Received: from frontend2 ([10.202.2.161])
 by compute1.internal (MEProxy); Fri, 30 Jun 2017 05:59:22 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=u9ZKRV1Ddbl61OC
 J02TnBJEUaMEi8FGf8qXRM0OyeSM=; b=MigSiw63pTMKSnPXVaV4GgRXUKLDo/W
 6wA5LG+uQvQEPYXL+gaXibZIZyAHXeSOTq9EmeGlyg1j8aP/G2I3dM6tGndCpZsh
 JI37FSjsLqX0HAFdnkcbQ9IbKyZjbcJAos8KRvO2UH9EsGJhkR00Y+pKaGqt75P+
 eMmxeC2IaIJo=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=
 fm1; bh=u9ZKRV1Ddbl61OCJ02TnBJEUaMEi8FGf8qXRM0OyeSM=; b=JnfeadZf
 MYLjo7T25CEmHfQYnBEcutilNrecUgPMYLfyCovXHWFwhnaNZ62aNA1yjnOoP+Jk
 IoHHgE+ZIJF7uIlHjWSileZW+XMGg2ZTSQYt8CQSwqkT2E9Bpi69o2tk+R64Zj9M
 V9Mhx50pIQNd7qK/IIWQkzof0nOQts7KoggwElUs0MwQq7Al8iBxQ1heo+xFaWgn
 Oz10VuXAF82/Sjess+q7ZwifpBbLYUUf1crtho2DeRp4Nw+HINAqlsx0TRPEOJmo
 ZcbFCZu4XHULFcDQVnCi7oxraqQxLJzztNYMnxY2Vxh3PI87NSk2ZVL24dNNYNGD
 OeoV8/99wh8cLw==
X-ME-Sender: <xms:-iBWWa-nrXLaNaFoWoiRvoPrt_bnAg7qEt52gmXoUVPA3b6K5_9o_g>
X-Sasl-enc: gQnNMTmCf3Yyo/GS0m/PGYiTC6aOEe395QT/vsWlAmtl 1498816762
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 501BE2424E;
 Fri, 30 Jun 2017 05:59:22 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Jan Blunck <jblunck@infradead.org>
Cc: dev@dpdk.org, gaetan.rivet@6wind.com, shreyansh.jain@nxp.com
Date: Fri, 30 Jun 2017 11:59:21 +0200
Message-ID: <1761350.IG1CJLobo1@xps>
In-Reply-To: <20170629182206.1072-1-jblunck@infradead.org>
References: <cover.1498577192.git.gaetan.rivet@6wind.com>
 <20170629182206.1072-1-jblunck@infradead.org>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH 00/15] bus attach/detach API and hotplug
	rework
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Jun 2017 09:59:23 -0000

29/06/2017 20:21, Jan Blunck:
> Gaetan Rivet (1):
>   pci: implement hotplug bus operation
> 
> Jan Blunck (14):
>   bus: add bus iterator to find a bus
>   bus: add find_device bus operation
>   vdev: implement find_device bus operation
>   pci: implement find_device bus operation
>   bus/fslmc: implement find_device bus operation
>   bus: add helper to find which bus holds a device
>   bus: add bus iterator to find a device
>   bus: require buses to implement find_device operation
>   bus: add rte_bus_find_by_name
>   bus: introduce device plug/unplug functionality
>   vdev: implement unplug bus operation
>   eal: add hotplug add/remove functions
>   dev: use new hotplug API in attach / detach
>   ethdev: Use embedded rte_device to detach driver

It seems you forgot this patch in the series:
	[PATCH v6 08/11] vdev: use standard bus registration function