93aee84f57
The "handle" fsdev backend was deprecated in QEMU 2.12.0 with: commit db3b3c7281ca82e2647e072a1f97db111313dd73 Author: Greg Kurz <groug@kaod.org> Date: Mon Jan 8 11:18:23 2018 +0100 9pfs: deprecate handle backend This backend raise some concerns: - doesn't support symlinks - fails +100 tests in the PJD POSIX file system test suite [1] - requires the QEMU process to run with the CAP_DAC_READ_SEARCH capability, which isn't recommended for security reasons This backend should not be used and wil be removed. The 'local' backend is the recommended alternative. [1] https://www.tuxera.com/community/posix-test-suite/ Signed-off-by: Greg Kurz <groug@kaod.org> Reviewed-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> It has passed the two release cooling period without any complaint. Remove it now. Signed-off-by: Greg Kurz <groug@kaod.org> Reviewed-by: Thomas Huth <thuth@redhat.com>
12 lines
380 B
Makefile
12 lines
380 B
Makefile
ifeq ($(call lor,$(CONFIG_VIRTIO_9P),$(CONFIG_XEN)),y)
|
|
common-obj-y = 9p.o 9p-util.o
|
|
common-obj-y += 9p-local.o 9p-xattr.o
|
|
common-obj-y += 9p-xattr-user.o 9p-posix-acl.o
|
|
common-obj-y += coth.o cofs.o codir.o cofile.o
|
|
common-obj-y += coxattr.o 9p-synth.o
|
|
common-obj-y += 9p-proxy.o
|
|
endif
|
|
|
|
common-obj-$(CONFIG_XEN) += xen-9p-backend.o
|
|
obj-$(CONFIG_VIRTIO_9P) += virtio-9p-device.o
|