From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 7B1F77CE1 for ; Mon, 9 Oct 2017 05:19:05 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP; 08 Oct 2017 20:19:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,498,1500966000"; d="scan'208";a="1203641268" Received: from dpdk06.sh.intel.com ([10.67.110.196]) by fmsmga001.fm.intel.com with ESMTP; 08 Oct 2017 20:19:02 -0700 From: Jianfeng Tan To: dev@dpdk.org Cc: jblunck@infradead.org, bruce.richardson@intel.com, konstantin.ananyev@intel.com, pablo.de.lara.guarch@intel.com, thomas@monjalon.net, yliu@fridaylinux.org, maxime.coquelin@redhat.com, mtetsuyah@gmail.com, ferruh.yigit@intel.com, Jianfeng Tan Date: Mon, 9 Oct 2017 03:20:24 +0000 Message-Id: <1507519229-80692-1-git-send-email-jianfeng.tan@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1503654052-84730-1-git-send-email-jianfeng.tan@intel.com> References: <1503654052-84730-1-git-send-email-jianfeng.tan@intel.com> Subject: [dpdk-dev] [PATCH v3 0/5] move vdev into drivers/bus X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Oct 2017 03:19:06 -0000 This patch set depends on: http://dpdk.org/ml/archives/dev/2017-October/077855.html This patch set is originated from below series: http://dpdk.org/ml/archives/dev/2017-September/076821.html As per previous discussions, we tend to move all bus drivers from EAL to drivers/bus/. This patch set targets vdev bus. Jianfeng Tan (5): cryptodev: remove crypto vdev init API eal: avoid calling rte_vdev_init() bus: introduce RTE_LOGTYPE_BUS for bus drivers bus/vdev: move to vdev bus to drivers/bus bus/vdev: normalize log type config/common_base | 5 + doc/guides/rel_notes/deprecation.rst | 5 - drivers/bus/Makefile | 2 + drivers/bus/fslmc/fslmc_bus.c | 9 +- drivers/bus/fslmc/fslmc_logs.h | 42 +-- drivers/bus/fslmc/fslmc_vfio.c | 4 +- drivers/bus/vdev/Makefile | 55 ++++ drivers/bus/vdev/rte_bus_vdev_version.map | 10 + drivers/bus/vdev/rte_vdev.h | 153 +++++++++++ drivers/bus/vdev/vdev.c | 344 +++++++++++++++++++++++++ drivers/bus/vdev/vdev_logs.h | 40 +++ lib/librte_cryptodev/rte_cryptodev.c | 6 - lib/librte_cryptodev/rte_cryptodev.h | 17 -- lib/librte_cryptodev/rte_cryptodev_version.map | 1 - lib/librte_eal/bsdapp/eal/Makefile | 1 - lib/librte_eal/common/Makefile | 2 +- lib/librte_eal/common/eal_common_dev.c | 21 +- lib/librte_eal/common/eal_common_log.c | 1 + lib/librte_eal/common/eal_common_vdev.c | 342 ------------------------ lib/librte_eal/common/include/rte_dev.h | 24 +- lib/librte_eal/common/include/rte_log.h | 1 + lib/librte_eal/common/include/rte_vdev.h | 131 ---------- lib/librte_eal/linuxapp/eal/Makefile | 1 - mk/rte.app.mk | 1 + 24 files changed, 628 insertions(+), 590 deletions(-) create mode 100644 drivers/bus/vdev/Makefile create mode 100644 drivers/bus/vdev/rte_bus_vdev_version.map create mode 100644 drivers/bus/vdev/rte_vdev.h create mode 100644 drivers/bus/vdev/vdev.c create mode 100644 drivers/bus/vdev/vdev_logs.h delete mode 100644 lib/librte_eal/common/eal_common_vdev.c delete mode 100644 lib/librte_eal/common/include/rte_vdev.h -- 2.7.4