aboutsummaryrefslogtreecommitdiff
path: root/hw/xen
diff options
context:
space:
mode:
authorStefano Stabellini <sstabellini@kernel.org>2017-03-22 10:17:09 -0700
committerStefano Stabellini <sstabellini@kernel.org>2017-04-25 11:04:33 -0700
commite737b6d5c3d69bde91c8cc554a8ce6d20e14feaa (patch)
treef33d951279d6c6bc5fcfaea79fe26182716d2208 /hw/xen
parent4476e09e34d4257d2bfbdb70d106a154f42c928b (diff)
xen/9pfs: build and register Xen 9pfs backend
Signed-off-by: Stefano Stabellini <stefano@aporeto.com> Reviewed-by: Greg Kurz <groug@kaod.org> CC: anthony.perard@citrix.com CC: jgross@suse.com CC: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> CC: Greg Kurz <groug@kaod.org>
Diffstat (limited to 'hw/xen')
-rw-r--r--hw/xen/xen_backend.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/xen/xen_backend.c b/hw/xen/xen_backend.c
index d34c49e152..c85f1637e4 100644
--- a/hw/xen/xen_backend.c
+++ b/hw/xen/xen_backend.c
@@ -583,6 +583,9 @@ void xen_be_register_common(void)
xen_be_register("console", &xen_console_ops);
xen_be_register("vkbd", &xen_kbdmouse_ops);
xen_be_register("qdisk", &xen_blkdev_ops);
+#ifdef CONFIG_VIRTFS
+ xen_be_register("9pfs", &xen_9pfs_ops);
+#endif
#ifdef CONFIG_USB_LIBUSB
xen_be_register("qusb", &xen_usb_ops);
#endif