blob: deabbd376cb1cd70bb3d5a28c82d2ba08a1f7c15 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05002#
3# 9P protocol configuration
4#
5
6menuconfig NET_9P
Eric Van Hensbergen87211cd2011-05-16 10:46:39 -05007 tristate "Plan 9 Resource Sharing Support (9P2000)"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05008 help
9 If you say Y here, you will get experimental support for
10 Plan 9 resource sharing via the 9P2000 protocol.
11
12 See <http://v9fs.sf.net> for more information.
13
14 If unsure, say N.
15
Randy Dunlap4ff429e2008-11-12 13:05:17 -080016if NET_9P
17
Thomas Weißschuh1c582c62021-11-03 20:38:21 +010018config NET_9P_FD
19 default NET_9P
20 tristate "9P FD Transport"
21 help
22 This builds support for transports over TCP, Unix sockets and
23 filedescriptors.
24
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050025config NET_9P_VIRTIO
Eric Van Hensbergen87211cd2011-05-16 10:46:39 -050026 depends on VIRTIO
27 tristate "9P Virtio Transport"
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050028 help
29 This builds support for a transports between
30 guest partitions and a host partition.
31
Stefano Stabellini7f254832017-04-05 12:04:01 -070032config NET_9P_XEN
33 depends on XEN
Arnd Bergmann4a806012017-04-19 19:06:39 +020034 select XEN_XENBUS_FRONTEND
Stefano Stabellini7f254832017-04-05 12:04:01 -070035 tristate "9P Xen Transport"
36 help
37 This builds support for a transport for 9pfs between
38 two Xen domains.
39
40
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050041config NET_9P_RDMA
Arnd Bergmann533d1da2018-05-25 23:29:59 +020042 depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050043 tristate "9P RDMA Transport (Experimental)"
44 help
Randy Dunlap4ff429e2008-11-12 13:05:17 -080045 This builds support for an RDMA transport.
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050046
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050047config NET_9P_DEBUG
48 bool "Debug information"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050049 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +020050 Say Y if you want the 9P subsystem to log debug information.
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050051
Randy Dunlap4ff429e2008-11-12 13:05:17 -080052endif