0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # 9P protocol configuration
0004 #
0005
0006 menuconfig NET_9P
0007 tristate "Plan 9 Resource Sharing Support (9P2000)"
0008 help
0009 If you say Y here, you will get experimental support for
0010 Plan 9 resource sharing via the 9P2000 protocol.
0011
0012 See <http://v9fs.sf.net> for more information.
0013
0014 If unsure, say N.
0015
0016 if NET_9P
0017
0018 config NET_9P_FD
0019 default NET_9P
0020 tristate "9P FD Transport"
0021 help
0022 This builds support for transports over TCP, Unix sockets and
0023 filedescriptors.
0024
0025 config NET_9P_VIRTIO
0026 depends on VIRTIO
0027 tristate "9P Virtio Transport"
0028 help
0029 This builds support for a transports between
0030 guest partitions and a host partition.
0031
0032 config NET_9P_XEN
0033 depends on XEN
0034 select XEN_XENBUS_FRONTEND
0035 tristate "9P Xen Transport"
0036 help
0037 This builds support for a transport for 9pfs between
0038 two Xen domains.
0039
0040
0041 config NET_9P_RDMA
0042 depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
0043 tristate "9P RDMA Transport (Experimental)"
0044 help
0045 This builds support for an RDMA transport.
0046
0047 config NET_9P_DEBUG
0048 bool "Debug information"
0049 help
0050 Say Y if you want the 9P subsystem to log debug information.
0051
0052 endif