diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-05-03 15:00:31 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-05-10 12:48:35 +0200 |
commit | f24bb7287ddbdfd9b75fe782c366abc7939a4190 (patch) | |
tree | 6d9348541525dcc66caa7899b1b8462c1a7b7bd7 /backends/Makefile.objs | |
parent | 78067fdef6828febf894ff1941cfb95e2dd00ad5 (diff) |
Add vhost-user-backend
Create a vhost-user-backend object that holds a connection to a
vhost-user backend (or "slave" process) and can be referenced from
virtio devices that support it. See later patches for input & gpu
usage.
Note: a previous iteration of this object made it user-creatable, and
allowed managed sub-process spawning, but that has been dropped for
now.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20190503130034.24916-4-marcandre.lureau@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'backends/Makefile.objs')
-rw-r--r-- | backends/Makefile.objs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/Makefile.objs b/backends/Makefile.objs index ff619d31b4..981e8e122f 100644 --- a/backends/Makefile.objs +++ b/backends/Makefile.objs @@ -14,4 +14,6 @@ common-obj-y += cryptodev-vhost.o common-obj-$(CONFIG_VHOST_CRYPTO) += cryptodev-vhost-user.o endif +common-obj-$(call land,$(CONFIG_VHOST_USER),$(CONFIG_VIRTIO)) += vhost-user.o + common-obj-$(CONFIG_LINUX) += hostmem-memfd.o |