DPDK patches and discussions
 help / color / mirror / Atom feed
From: Bernard Iremonger <bernard.iremonger@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v4 04/20] null: remove pci device driver
Date: Wed, 21 Oct 2015 15:50:28 +0100	[thread overview]
Message-ID: <1445439044-2987-5-git-send-email-bernard.iremonger@intel.com> (raw)
In-Reply-To: <1445439044-2987-1-git-send-email-bernard.iremonger@intel.com>

remove rte_null_pmd and pci_dev.
initialise dev_flags, driver, drv_name, kdrv and numa_node fields in eth_dev data

Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
---
 drivers/net/null/rte_eth_null.c | 28 +++++++---------------------
 1 file changed, 7 insertions(+), 21 deletions(-)

diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c
index e244595..fb7473f 100644
--- a/drivers/net/null/rte_eth_null.c
+++ b/drivers/net/null/rte_eth_null.c
@@ -340,13 +340,6 @@ eth_stats_reset(struct rte_eth_dev *dev)
 	}
 }
 
-static struct eth_driver rte_null_pmd = {
-	.pci_drv = {
-		.name = "rte_null_pmd",
-		.drv_flags = RTE_PCI_DRV_DETACHABLE,
-	},
-};
-
 static void
 eth_queue_release(void *q)
 {
@@ -386,7 +379,6 @@ eth_dev_null_create(const char *name,
 	const unsigned nb_rx_queues = 1;
 	const unsigned nb_tx_queues = 1;
 	struct rte_eth_dev_data *data = NULL;
-	struct rte_pci_device *pci_dev = NULL;
 	struct pmd_internals *internals = NULL;
 	struct rte_eth_dev *eth_dev = NULL;
 
@@ -403,10 +395,6 @@ eth_dev_null_create(const char *name,
 	if (data == NULL)
 		goto error;
 
-	pci_dev = rte_zmalloc_socket(name, sizeof(*pci_dev), 0, numa_node);
-	if (pci_dev == NULL)
-		goto error;
-
 	internals = rte_zmalloc_socket(name, sizeof(*internals), 0, numa_node);
 	if (internals == NULL)
 		goto error;
@@ -418,8 +406,7 @@ eth_dev_null_create(const char *name,
 
 	/* now put it all together
 	 * - store queue data in internals,
-	 * - store numa_node info in pci_driver
-	 * - point eth_dev_data to internals and pci_driver
+	 * - point eth_dev_data to internals
 	 * - and point eth_dev structure to new eth_dev_data structure
 	 */
 	/* NOTE: we'll replace the data element, of originally allocated eth_dev
@@ -431,8 +418,6 @@ eth_dev_null_create(const char *name,
 	internals->packet_copy = packet_copy;
 	internals->numa_node = numa_node;
 
-	pci_dev->numa_node = numa_node;
-
 	data->dev_private = internals;
 	data->port_id = eth_dev->data->port_id;
 	data->nb_rx_queues = (uint16_t)nb_rx_queues;
@@ -443,8 +428,11 @@ eth_dev_null_create(const char *name,
 
 	eth_dev->data = data;
 	eth_dev->dev_ops = &ops;
-	eth_dev->pci_dev = pci_dev;
-	eth_dev->driver = &rte_null_pmd;
+	eth_dev->driver = NULL;
+	eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
+	eth_dev->data->kdrv = RTE_KDRV_NONE;
+	eth_dev->data->drv_name = NULL;
+	eth_dev->data->numa_node = numa_node;
 
 	/* finally assign rx and tx ops */
 	if (packet_copy) {
@@ -459,7 +447,6 @@ eth_dev_null_create(const char *name,
 
 error:
 	rte_free(data);
-	rte_free(pci_dev);
 	rte_free(internals);
 
 	return -1;
@@ -562,14 +549,13 @@ rte_pmd_null_devuninit(const char *name)
 	RTE_LOG(INFO, PMD, "Closing null ethdev on numa socket %u\n",
 			rte_socket_id());
 
-	/* reserve an ethdev entry */
+	/* find the ethdev entry */
 	eth_dev = rte_eth_dev_allocated(name);
 	if (eth_dev == NULL)
 		return -1;
 
 	rte_free(eth_dev->data->dev_private);
 	rte_free(eth_dev->data);
-	rte_free(eth_dev->pci_dev);
 
 	rte_eth_dev_release_port(eth_dev);
 
-- 
1.9.1

  parent reply	other threads:[~2015-10-21 14:51 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <PATCH v4>
2015-10-21 14:50 ` [dpdk-dev] [PATCH v4 00/20] remove pci driver from vdevs Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 01/20] librte_eal: add RTE_KDRV_NONE for vdevs Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 03/20] librte_ether: add function rte_eth_copy_dev_info() Bernard Iremonger
2015-10-21 14:50   ` Bernard Iremonger [this message]
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 05/20] ring: remove pci device driver Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 06/20] bonding: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 07/20] pcap: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 08/20] af_packet: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 09/20] xenvirt: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 10/20] mpipe: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 11/20] ixgbe: copy pci device info to eth_dev data Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 12/20] e1000: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 13/20] i40e: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 14/20] fm10k: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 15/20] bnx2x: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 16/20] cxgbe: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 17/20] enic: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 18/20] mlx4: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 19/20] virtio: " Bernard Iremonger
2015-10-21 14:50   ` [dpdk-dev] [PATCH v4 20/20] vmxnet3: " Bernard Iremonger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1445439044-2987-5-git-send-email-bernard.iremonger@intel.com \
    --to=bernard.iremonger@intel.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).