f24bb7287d
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>
20 lines
521 B
Makefile
20 lines
521 B
Makefile
common-obj-y += rng.o rng-egd.o
|
|
common-obj-$(CONFIG_POSIX) += rng-random.o
|
|
|
|
common-obj-$(CONFIG_TPM) += tpm.o
|
|
|
|
common-obj-y += hostmem.o hostmem-ram.o
|
|
common-obj-$(CONFIG_POSIX) += hostmem-file.o
|
|
|
|
common-obj-y += cryptodev.o
|
|
common-obj-y += cryptodev-builtin.o
|
|
|
|
ifeq ($(CONFIG_VIRTIO_CRYPTO),y)
|
|
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
|