mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
vdpa: Check for existence of opts.vhostdev
Since net_init_vhost_vdpa is trying to open it. Not specifying it in the
command line crash qemu.
Fixes: 7327813d17
("vhost-vdpa: open device fd in net_init_vhost_vdpa()")
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <20211112193431.2379298-3-eperezma@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
0351152b6f
commit
c829540401
1 changed files with 4 additions and 0 deletions
|
@ -260,6 +260,10 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
|
||||||
|
|
||||||
assert(netdev->type == NET_CLIENT_DRIVER_VHOST_VDPA);
|
assert(netdev->type == NET_CLIENT_DRIVER_VHOST_VDPA);
|
||||||
opts = &netdev->u.vhost_vdpa;
|
opts = &netdev->u.vhost_vdpa;
|
||||||
|
if (!opts->vhostdev) {
|
||||||
|
error_setg(errp, "vdpa character device not specified with vhostdev");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
vdpa_device_fd = qemu_open(opts->vhostdev, O_RDWR, errp);
|
vdpa_device_fd = qemu_open(opts->vhostdev, O_RDWR, errp);
|
||||||
if (vdpa_device_fd == -1) {
|
if (vdpa_device_fd == -1) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue