aboutsummaryrefslogtreecommitdiff
path: root/net/meson.build
diff options
context:
space:
mode:
authorEugenio Pérez <eperezma@redhat.com>2022-07-20 08:59:41 +0200
committerJason Wang <jasowang@redhat.com>2022-07-20 16:58:08 +0800
commit94c643732dc110d04bbdf0eb43c41bce23b3593e (patch)
treed92034ac7c2c5ac1d5e5c1a50c6d5253b9a8d651 /net/meson.build
parent463ba1e3b8cf080812895c5f26d95d8d7db2e692 (diff)
downloadqemu-94c643732dc110d04bbdf0eb43c41bce23b3593e.zip
qemu-94c643732dc110d04bbdf0eb43c41bce23b3593e.tar.gz
qemu-94c643732dc110d04bbdf0eb43c41bce23b3593e.tar.bz2
vhost-net-vdpa: add stubs for when no virtio-net device is present
net/vhost-vdpa.c will need functions that are declared in vhost-shadow-virtqueue.c, that needs functions of virtio-net.c. Copy the vhost-vdpa-stub.c code so only the constructor net_init_vhost_vdpa needs to be defined. Signed-off-by: Eugenio Pérez <eperezma@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net/meson.build')
-rw-r--r--net/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/meson.build b/net/meson.build
index 754e2d1..d1be76d 100644
--- a/net/meson.build
+++ b/net/meson.build
@@ -41,7 +41,8 @@ endif
softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files(tap_posix))
softmmu_ss.add(when: 'CONFIG_WIN32', if_true: files('tap-win32.c'))
if have_vhost_net_vdpa
- softmmu_ss.add(files('vhost-vdpa.c'))
+ softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-vdpa.c'), if_false: files('vhost-vdpa-stub.c'))
+ softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-vdpa-stub.c'))
endif
vmnet_files = files(