dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [vmxnet3-usermap PATCH] kmod: remove useless debug hack
@ 2013-09-27 15:07 Thomas Monjalon
       [not found] ` <1380294447-27932-1-git-send-email-thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Monjalon @ 2013-09-27 15:07 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

The PCI address was stored in unused variables of the netdev.
It has been introduced in commit 75ab826258c1099e2e56ec48fd17dfa5591111cd.
But it is a useless hack.

Signed-off-by: Thomas Monjalon <thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
---
 kmod/vmxnet3_drv.c |   12 ------------
 1 file changed, 12 deletions(-)

diff --git a/kmod/vmxnet3_drv.c b/kmod/vmxnet3_drv.c
index 0443ad6..fc51f7e 100644
--- a/kmod/vmxnet3_drv.c
+++ b/kmod/vmxnet3_drv.c
@@ -3928,9 +3928,6 @@ vmxnet3_probe_device(struct pci_dev *pdev,
 	int size;
 	int num_tx_queues = num_tqs[atomic_read(&devices_found)];
 	int num_rx_queues = num_rqs[atomic_read(&devices_found)];
-	/* Parse device address on the PCIe bus. */
-	uint16_t dom = 0;
-	uint8_t bus = 0, dev = 0, func = 0;
 
 #ifdef VMXNET3_RSS
 	if ((atomic_read(&devices_found) < VMXNET3_SHM_MAX_DEVICES &&
@@ -4171,15 +4168,6 @@ vmxnet3_probe_device(struct pci_dev *pdev,
 	vmxnet3_check_link(adapter, FALSE);
 	atomic_inc(&devices_found);
 
-	/* Fill PCIe bus address info. */
-	sscanf(dev_name(adapter->netdev->dev.parent),
-	       "%04hx:%02hhx:%02hhx.%hhd",
-	       &dom, &bus, &dev, &func);
-
-	adapter->netdev->mem_start = (dom<<16)|(bus<<8)|dev;
-	adapter->netdev->mem_end = (dom<<16)|(bus<<8)|dev;
-	adapter->netdev->if_port = func;
-
 	return 0;
 
 err_register:
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-09-30  9:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-27 15:07 [vmxnet3-usermap PATCH] kmod: remove useless debug hack Thomas Monjalon
     [not found] ` <1380294447-27932-1-git-send-email-thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2013-09-27 15:13   ` Damien Millescamps
     [not found]     ` <5245A09B.4010009-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2013-09-30  9:24       ` Thomas Monjalon

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).