diff options
| author | Jagannathan Raman <jag.raman@oracle.com> | 2022-06-13 16:26:25 -0400 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2022-06-15 16:43:42 +0100 |
| commit | 8f9a9259d32c1b6ba41a38ad99fc67bcc0da0131 (patch) | |
| tree | c06eadbfa3d68d5ee966ce4b2bf90dc5a22fef4b /hw/remote/meson.build | |
| parent | 55116968deb09fdae198cecaa45f4e5532d5445a (diff) | |
| download | focaccia-qemu-8f9a9259d32c1b6ba41a38ad99fc67bcc0da0131.tar.gz focaccia-qemu-8f9a9259d32c1b6ba41a38ad99fc67bcc0da0131.zip | |
vfio-user: define vfio-user-server object
Define vfio-user object which is remote process server for QEMU. Setup object initialization functions and properties necessary to instantiate the object Signed-off-by: Elena Ufimtseva <elena.ufimtseva@oracle.com> Signed-off-by: John G Johnson <john.g.johnson@oracle.com> Signed-off-by: Jagannathan Raman <jag.raman@oracle.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: e45a17001e9b38f451543a664ababdf860e5f2f2.1655151679.git.jag.raman@oracle.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/remote/meson.build')
| -rw-r--r-- | hw/remote/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/remote/meson.build b/hw/remote/meson.build index 7da83350c8..0eb5a0f375 100644 --- a/hw/remote/meson.build +++ b/hw/remote/meson.build @@ -6,6 +6,7 @@ remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('message.c')) remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('remote-obj.c')) remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('proxy.c')) remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('iohub.c')) +remote_ss.add(when: 'CONFIG_VFIO_USER_SERVER', if_true: files('vfio-user-obj.c')) remote_ss.add(when: 'CONFIG_VFIO_USER_SERVER', if_true: libvfio_user_dep) |