From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernard Iremonger Subject: [PATCH 00/20] remove pci driver from vdevs Date: Mon, 28 Sep 2015 14:03:18 +0100 Message-ID: <1443445418-18498-1-git-send-email-bernard.iremonger@intel.com> References: To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id AEAF72A1A for ; Mon, 28 Sep 2015 15:03:48 +0200 (CEST) In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 ethdev data. Bernard Iremonger (17): 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() null: remove pci device driver ring: remove pci device driver bonding: remove pci device driver pcap: remove pci device driver 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 David Hunt (3): af_packet: remove pci device driver xenvirt: remove pci device driver mpipe: remove pci device driver drivers/net/af_packet/rte_eth_af_packet.c | 20 +++++------ drivers/net/bnx2x/bnx2x_ethdev.c | 4 +++ 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 | 5 +++ drivers/net/e1000/em_ethdev.c | 3 ++ drivers/net/e1000/igb_ethdev.c | 5 +++ drivers/net/enic/enic_ethdev.c | 2 ++ 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 | 4 +++ drivers/net/mpipe/mpipe_tilegx.c | 10 ++++-- drivers/net/null/rte_eth_null.c | 32 +++++------------ 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 | 14 +++----- 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 ++++ 26 files changed, 180 insertions(+), 174 deletions(-) -- 1.9.1