From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 0F5585927 for ; Thu, 27 Aug 2015 17:40:47 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP; 27 Aug 2015 08:40:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,422,1437462000"; d="scan'208";a="549646570" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by FMSMGA003.fm.intel.com with ESMTP; 27 Aug 2015 08:40:45 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t7RFeii0004295; Thu, 27 Aug 2015 16:40:44 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id t7RFei20032432; Thu, 27 Aug 2015 16:40:44 +0100 Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with id t7RFei5T032428; Thu, 27 Aug 2015 16:40:44 +0100 From: Bernard Iremonger To: dev@dpdk.org Date: Thu, 27 Aug 2015 16:40:35 +0100 Message-Id: <1440690041-32391-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: References: Subject: [dpdk-dev] [RFC PATCH 0/6] remove pci driver from vdevs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Aug 2015 15:40:48 -0000 There is a dummy pci driver in the vdev PMD's at present. This RFC proposes to remove the pci driver from the vdev PMD's. Changes have been made to librte_ether to handle vdevs which do not have a pci driver. The pdev PMD's should work as before with the changes to librte_ether The vdev PMD's which still have a pci driver should work as before with the librte_ether changes. The following vdev PMD's have had the pci driver removed bonding PMD null PMD pcap PMD ring PMD Bernard Iremonger (6): librte_ether: add fields from rte_pci_driver to rte_eth_dev and rte_eth_dev_data. librte_ether: handle RTE_ETH_DEV_INTR_LSC for vdevs null: remove pci device driver ring: remove pci device driver bonding: remove pci device driver pcap: remove pci device driver drivers/net/bonding/rte_eth_bond_alb.c | 2 +- drivers/net/bonding/rte_eth_bond_api.c | 49 ++++++++-------------------------- drivers/net/bonding/rte_eth_bond_pmd.c | 22 ++++++++++----- drivers/net/null/rte_eth_null.c | 28 +++++-------------- drivers/net/pcap/rte_eth_pcap.c | 31 +++++++-------------- drivers/net/ring/rte_eth_ring.c | 35 +++++------------------- lib/librte_ether/rte_ethdev.c | 34 ++++++++++++++++------- lib/librte_ether/rte_ethdev.h | 10 ++++++- 8 files changed, 83 insertions(+), 128 deletions(-) -- 1.9.1