git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30affae
)
net/virtio-user: fix typo in error message
author
Tiwei Bie
<tiwei.bie@intel.com>
Tue, 6 Nov 2018 06:40:22 +0000
(14:40 +0800)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Tue, 13 Nov 2018 23:35:53 +0000
(
00:35
+0100)
The param we are checking is VIRTIO_USER_ARG_PATH, instead
of VIRTIO_USER_ARG_QUEUE_SIZE.
Fixes:
ce2eabdd43ec
("net/virtio-user: add virtual device")
Cc: stable@dpdk.org
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
Reviewed-by: Jens Freimann <jfreimann@redhat.com>
drivers/net/virtio/virtio_user_ethdev.c
patch
|
blob
|
history
diff --git
a/drivers/net/virtio/virtio_user_ethdev.c
b/drivers/net/virtio/virtio_user_ethdev.c
index
61b7c0a
..
f879139
100644
(file)
--- a/
drivers/net/virtio/virtio_user_ethdev.c
+++ b/
drivers/net/virtio/virtio_user_ethdev.c
@@
-484,7
+484,7
@@
virtio_user_pmd_probe(struct rte_vdev_device *dev)
}
} else {
PMD_INIT_LOG(ERR, "arg %s is mandatory for virtio_user",
-
VIRTIO_USER_ARG_QUEUE_SIZE
);
+
VIRTIO_USER_ARG_PATH
);
goto end;
}