[dpdk-dev] [PATCH 1/2] bus/vdev: fix debug message on probing
Thomas Monjalon
thomas at monjalon.net
Thu Feb 21 20:01:24 CET 2019
The log was printing the device name two times,
first one being supposed to be the driver name.
As we don't know yet the driver name, the log is simplified.
Fixes: 9bf4901d1a11 ("bus/vdev: remove probe with driver name option")
Cc: ferruh.yigit at intel.com
Signed-off-by: Thomas Monjalon <thomas at monjalon.net>
---
drivers/bus/vdev/vdev.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/bus/vdev/vdev.c b/drivers/bus/vdev/vdev.c
index 2c03ca4185..7225411791 100644
--- a/drivers/bus/vdev/vdev.c
+++ b/drivers/bus/vdev/vdev.c
@@ -144,9 +144,7 @@ vdev_probe_all_drivers(struct rte_vdev_device *dev)
int ret;
name = rte_vdev_device_name(dev);
-
- VDEV_LOG(DEBUG, "Search driver %s to probe device %s", name,
- rte_vdev_device_name(dev));
+ VDEV_LOG(DEBUG, "Search driver to probe device %s", name);
if (vdev_parse(name, &driver))
return -1;
--
2.20.1
More information about the dev
mailing list