From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Blunck Subject: Re: [PATCH v4 00/10] Rework vdev probing to use rte_bus infrastructure Date: Mon, 27 Mar 2017 09:47:32 +0200 Message-ID: References: <1488018496-995-1-git-send-email-jblunck@infradead.org> <1488797809-12917-1-git-send-email-jblunck@infradead.org> <4092570.UuKJWNTjJ5@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: dev , David Marchand , Shreyansh Jain , Ferruh Yigit To: Thomas Monjalon Return-path: Received: from mail-wr0-f169.google.com (mail-wr0-f169.google.com [209.85.128.169]) by dpdk.org (Postfix) with ESMTP id DB02CFA31 for ; Mon, 27 Mar 2017 09:47:32 +0200 (CEST) Received: by mail-wr0-f169.google.com with SMTP id u1so42913932wra.2 for ; Mon, 27 Mar 2017 00:47:32 -0700 (PDT) In-Reply-To: <4092570.UuKJWNTjJ5@xps13> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Mar 13, 2017 at 6:55 PM, Thomas Monjalon wrote: > 2017-03-06 11:56, Jan Blunck: >> Jan Blunck (10): >> eal: probe legacy PCI devices before other bus devices >> eal: probe new virtual bus after other bus devices >> eal: move virtual device probing into a bus >> eal: remove unused rte_eal_dev_init() >> eal: Refactor vdev driver probe/remove >> eal: add struct rte_vdev_device >> eal: add virtual device name helper function >> eal: add virtual device arguments helper function >> eal: make virtual bus use rte_vdev_device >> eal: make virtual driver probe and remove take rte_vdev_device >> >> drivers/crypto/null/null_crypto_pmd.c | 18 +- >> drivers/net/af_packet/rte_eth_af_packet.c | 11 +- >> drivers/net/bonding/rte_eth_bond_pmd.c | 13 +- >> drivers/net/mpipe/mpipe_tilegx.c | 10 +- >> drivers/net/null/rte_eth_null.c | 13 +- >> drivers/net/pcap/rte_eth_pcap.c | 12 +- >> drivers/net/ring/rte_eth_ring.c | 9 +- >> drivers/net/tap/rte_eth_tap.c | 10 +- >> drivers/net/vhost/rte_eth_vhost.c | 10 +- >> drivers/net/virtio/virtio_user_ethdev.c | 18 +- >> drivers/net/xenvirt/rte_eth_xenvirt.c | 9 +- >> lib/librte_eal/bsdapp/eal/eal.c | 9 +- >> lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 - >> lib/librte_eal/common/eal_common_bus.c | 16 +- >> lib/librte_eal/common/eal_common_dev.c | 28 --- >> lib/librte_eal/common/eal_common_vdev.c | 245 +++++++++++++++++++++--- >> lib/librte_eal/common/include/rte_dev.h | 5 - >> lib/librte_eal/common/include/rte_vdev.h | 26 ++- >> lib/librte_eal/linuxapp/eal/eal.c | 9 +- >> lib/librte_eal/linuxapp/eal/rte_eal_version.map | 1 - >> 20 files changed, 341 insertions(+), 132 deletions(-) > > When it will be merged, it would be nice to move the vdev bus files > to drivers/bus/vdev/. Correct. I'll send a follow up which is moving the code to the new path.