From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gaetan.rivet@6wind.com>
Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49])
 by dpdk.org (Postfix) with ESMTP id D97445592
 for <dev@dpdk.org>; Tue, 11 Apr 2017 17:44:28 +0200 (CEST)
Received: by mail-wm0-f49.google.com with SMTP id t189so4268291wmt.1
 for <dev@dpdk.org>; Tue, 11 Apr 2017 08:44:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:in-reply-to:references;
 bh=6M9uFEfcgeoYkV0ODH9p6IS4d/g5M7zF7wVTn2tE4f4=;
 b=h/UDZY2g0a2ZvNivzTcpwCpZAL6AmIPqJlOj5f2X6xyiLh7WmITsxIbhtVNFuoUDt8
 6sN5uO41mpwnyRBn9LuE+yCA3YCpFprmDzpt1rFuEBGoC979Ix7HwfWafDXEo2MPMs8h
 nPxKV4+mfEhKkIh+ICOKq1HdF+R8NWkf8al+VPco83QGQpEbE9zwMZHqh3a/livRAe4j
 CL7043O7toPbeaqpzdztZhsiuo5JVzGBQpXg7pwUpvgq18DtbOvt3EX+vwK5jYt+ZPrp
 pn6b0KWMUic3Ne0hh9gbxzn6Svxdh3uwzTgAgfBVjfIGR/Jyqa4RnBWuIJnISFHfC7mo
 NV+A==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to
 :references;
 bh=6M9uFEfcgeoYkV0ODH9p6IS4d/g5M7zF7wVTn2tE4f4=;
 b=pb8S3ZIEL3CBm5Qjs+NHkkN5r9yjaO6sdvuwOYSjMf7yEow+qQSADI5fCI2z+LXn87
 EM1tGXdjxxzepsrvn/rtbDoqmLlI6EmzTjTb7JN05Vy5CewBVm8fJZmHl9ttB8NHDvQc
 spb2UIi0mST3pN0nnwZeIlRdxBALc0nCx0Ci7hYtm9XMTrvy5yghQAWo9Xk4iD/D+Bfz
 CnQtBfJ/t9AHcd2x6SayFh1gTzL1fec5j/ZpW0KgSm+ODUrwakWV18L/78qsoMvO2Q1E
 Ld6t2gwzLhW0XUpPsPuKCSb1OjricQoi9BsrGzsCDJ1UA1E/MBMo8m8kbj2VzGYEiPKo
 1MGQ==
X-Gm-Message-State: AN3rC/6xbCf3GW/SspxXxQ+Bgzp2RzFYrIri6TZQi9YnRUqPPtNILcog
 pBpuaaHLa4OFz3heL6c=
X-Received: by 10.28.69.72 with SMTP id s69mr16227399wma.85.1491925468250;
 Tue, 11 Apr 2017 08:44:28 -0700 (PDT)
Received: from bidouze.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com.
 [62.23.145.78])
 by smtp.gmail.com with ESMTPSA id v14sm2936830wmv.24.2017.04.11.08.44.27
 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
 Tue, 11 Apr 2017 08:44:27 -0700 (PDT)
From: Gaetan Rivet <gaetan.rivet@6wind.com>
To: dev@dpdk.org
Cc: Jan Blunck <jblunck@infradead.org>
Date: Tue, 11 Apr 2017 17:44:04 +0200
Message-Id: <cover.1491925092.git.gaetan.rivet@6wind.com>
X-Mailer: git-send-email 2.1.4
In-Reply-To: <1488797809-12917-1-git-send-email-jblunck@infradead.org>
References: <1488797809-12917-1-git-send-email-jblunck@infradead.org>
Subject: [dpdk-dev] [PATCH v5 00/12] Rework vdev probing to use rte_bus
	infrastructure
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: Tue, 11 Apr 2017 15:44:29 -0000

I have rebased the work done by Jan to introduce the virtual device
subsystem using the new rte_bus API.
I also fixed a few outstanding compilation issues, related to PMDs introduced
during this release.
Additionally, a few virtual devices had not been ported to use the new
rte_vdev_device that had been introduced in previous versions.

This patchset depends on:
http://dpdk.org/dev/patchwork/patch/20416/
http://dpdk.org/dev/patchwork/patch/20417/

Changes since version 4:
 * Fix compilation issues for several virtual devices

Gaetan Rivet (3):
  net/kni: use generic vdev for probe and remove
  crypto: use generic vdev for probe and remove
  event: use generic vdev for probe and remove

Jan Blunck (9):
  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/aesni_gcm/aesni_gcm_pmd.c        |  20 +-
 drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c      |  21 +-
 drivers/crypto/armv8/rte_armv8_pmd.c            |  21 +-
 drivers/crypto/kasumi/rte_kasumi_pmd.c          |  22 +-
 drivers/crypto/null/null_crypto_pmd.c           |  18 +-
 drivers/crypto/openssl/rte_openssl_pmd.c        |  22 +-
 drivers/crypto/scheduler/scheduler_pmd.c        |  17 +-
 drivers/crypto/snow3g/rte_snow3g_pmd.c          |  22 +-
 drivers/crypto/zuc/rte_zuc_pmd.c                |  22 +-
 drivers/event/octeontx/ssovf_evdev.c            |  11 +-
 drivers/event/skeleton/skeleton_eventdev.c      |  10 +-
 drivers/event/sw/sw_evdev.c                     |  11 +-
 drivers/net/af_packet/rte_eth_af_packet.c       |  11 +-
 drivers/net/bonding/rte_eth_bond_pmd.c          |  13 +-
 drivers/net/kni/rte_eth_kni.c                   |  12 +-
 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                 |   3 -
 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          |  29 ---
 lib/librte_eal/common/eal_common_vdev.c         | 262 +++++++++++++++++++++---
 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               |   3 -
 lib/librte_eal/linuxapp/eal/rte_eal_version.map |   1 -
 31 files changed, 492 insertions(+), 188 deletions(-)

-- 
2.1.4