From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 57E508D95 for ; Fri, 23 Oct 2015 19:55:28 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP; 23 Oct 2015 10:55:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,187,1444719600"; d="scan'208";a="586795300" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by FMSMGA003.fm.intel.com with ESMTP; 23 Oct 2015 10:55:26 -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 t9NHacPS006539; Fri, 23 Oct 2015 18:36:38 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id t9NHacDg003676; Fri, 23 Oct 2015 18:36:38 +0100 Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with id t9NHacF7003672; Fri, 23 Oct 2015 18:36:38 +0100 From: Bernard Iremonger To: dev@dpdk.org Date: Fri, 23 Oct 2015 18:36:05 +0100 Message-Id: <1445621793-3630-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v5 00/28] 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: Fri, 23 Oct 2015 17:55:28 -0000 There is a dummy pci driver in the vdev PMD's at present. This patch set removes the pci driver from the vdev PMD's. Changes have been made to librte_ether to handle vdevs and pdevs in the same way. The following vdev PMD's have had the pci driver removed: null ring bonding pcap af_packet xenvirt mpipe All the pdev PMD's have been modified to copy the pci device info into eth_dev data. Changes in v5: rebase to latest code. refactor patches to avoid potential problems with git bisect. Changes in v4: rebase to latest code add doxygen comments to rte_ethdev.h update release notes in patch 0002. Changes in v3: rebase to latest code. restructure patches 0002 and 0003 to fix compile issue in patch 0002. Changes in V2: rebase to latest code. fix compile error in rte_ethdev.c when debug disabled. remove Intel copyright from bnx2x, cxgbe, enic, mlx4, mpipe and null PMD's. Bernard Iremonger (28): librte_eal: add RTE_KDRV_NONE for vdevs librte_ether: add fields from rte_pci_driver to rte_eth_dev_data librte_ether: add function rte_eth_copy_dev_info ixgbe: copy pci device info to eth_dev data e1000: copy pci device info to eth_dev data i40e: copy pci device info to eth_dev data fm10k: copy pci device info to eth_dev data bnx2x: copy pci device info to eth_dev data cxgbe: copy pci device info to eth_dev data enic: copy pci device info to eth_dev data mlx4: copy pci device info to eth_dev data virtio: copy pci device info to eth_dev data vmxnet3: copy pci device info to eth_dev data null: copy device info to eth_dev data ring: copy device info to eth_dev data pcap: copy device info to eth_dev data af_packet: copy device info to eth_dev data xenvirt: copy device info to eth_dev data mpipe: copy device info to eth_dev data bonding: copy device info to eth_dev data librte_ether: remove branches on pci_dev null: remove pci device ring: remove pci device pcap: remove pci device af_packet: remove pci device xenvirt: remove pci device mpipe: remove pci device bonding: remove pci device doc/guides/rel_notes/release_2_2.rst | 3 ++ drivers/net/af_packet/rte_eth_af_packet.c | 20 +++++------ drivers/net/bnx2x/bnx2x_ethdev.c | 3 ++ drivers/net/bonding/rte_eth_bond_alb.c | 2 +- drivers/net/bonding/rte_eth_bond_api.c | 58 +++++++++--------------------- drivers/net/bonding/rte_eth_bond_pmd.c | 16 ++++----- drivers/net/bonding/rte_eth_bond_private.h | 2 +- drivers/net/cxgbe/cxgbe_ethdev.c | 3 ++ drivers/net/e1000/em_ethdev.c | 3 ++ drivers/net/e1000/igb_ethdev.c | 5 +++ drivers/net/enic/enic_ethdev.c | 1 + drivers/net/fm10k/fm10k_ethdev.c | 2 ++ drivers/net/i40e/i40e_ethdev.c | 3 ++ drivers/net/i40e/i40e_ethdev_vf.c | 2 ++ drivers/net/ixgbe/ixgbe_ethdev.c | 4 +++ drivers/net/mlx4/mlx4.c | 3 ++ drivers/net/mpipe/mpipe_tilegx.c | 9 +++-- drivers/net/null/rte_eth_null.c | 29 +++++---------- drivers/net/pcap/rte_eth_pcap.c | 31 +++++----------- drivers/net/ring/rte_eth_ring.c | 37 +++++-------------- drivers/net/virtio/virtio_ethdev.c | 3 ++ drivers/net/vmxnet3/vmxnet3_ethdev.c | 2 ++ drivers/net/xenvirt/rte_eth_xenvirt.c | 16 ++++----- lib/librte_eal/common/include/rte_pci.h | 3 +- lib/librte_ether/rte_ethdev.c | 54 ++++++++++++++++------------ lib/librte_ether/rte_ethdev.h | 29 +++++++++++++++ lib/librte_ether/rte_ether_version.map | 7 ++++ 27 files changed, 177 insertions(+), 173 deletions(-) -- 1.9.1