From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: [PATCH v4 0/4] Remove PCI and VDEV dependency from eventdev library Date: Fri, 9 Jun 2017 14:07:25 +0530 Message-ID: <20170609083729.10586-1-jerin.jacob@caviumnetworks.com> References: <20170607084333.6338-2-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: bruce.richardson@intel.com, harry.van.haaren@intel.com, hemant.agrawal@nxp.com, gage.eads@intel.com, nipun.gupta@nxp.com, gaetan.rivet@6wind.com, Jerin Jacob To: dev@dpdk.org Return-path: Received: from NAM01-BY2-obe.outbound.protection.outlook.com (mail-by2nam01on0041.outbound.protection.outlook.com [104.47.34.41]) by dpdk.org (Postfix) with ESMTP id D4E372BA1 for ; Fri, 9 Jun 2017 10:37:56 +0200 (CEST) In-Reply-To: <20170607084333.6338-2-jerin.jacob@caviumnetworks.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" v4: Fix Gaƫtan Rivet reported compilation issues v3: Removed the bus dependency by spliting lib/librte_eventdev/rte_eventdev_pmd_pci.h and lib/librte_eventdev/rte_eventdev_pmd_vdev.h Jerin Jacob (4): eventdev: remove PCI dependency from generic data structures eventdev: restructure event PMD release function eventdev: make PCI probe and remove functions optional eventdev: make vdev init and uninit functions optional drivers/event/octeontx/ssovf_evdev.c | 2 + drivers/event/octeontx/ssovf_evdev.h | 2 +- drivers/event/octeontx/ssovf_worker.h | 1 + drivers/event/skeleton/skeleton_eventdev.c | 33 +++--- drivers/event/skeleton/skeleton_eventdev.h | 3 +- drivers/event/sw/sw_evdev.c | 1 + drivers/event/sw/sw_evdev.h | 2 +- lib/librte_eventdev/Makefile | 2 + lib/librte_eventdev/rte_eventdev.c | 148 ------------------------- lib/librte_eventdev/rte_eventdev.h | 2 - lib/librte_eventdev/rte_eventdev_pmd.h | 101 +----------------- lib/librte_eventdev/rte_eventdev_pmd_pci.h | 160 ++++++++++++++++++++++++++++ lib/librte_eventdev/rte_eventdev_pmd_vdev.h | 134 +++++++++++++++++++++++ 13 files changed, 327 insertions(+), 264 deletions(-) create mode 100644 lib/librte_eventdev/rte_eventdev_pmd_pci.h create mode 100644 lib/librte_eventdev/rte_eventdev_pmd_vdev.h -- 2.13.1