blob: e6014e0e51f7a212dd48cdefcb26dffb44b2fba4 [file] [log] [blame]
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001#
2# 9P protocol configuration
3#
4
5menuconfig NET_9P
Eric Van Hensbergen87211cd2011-05-16 10:46:39 -05006 depends on NET
7 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
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050018config NET_9P_VIRTIO
Eric Van Hensbergen87211cd2011-05-16 10:46:39 -050019 depends on VIRTIO
20 tristate "9P Virtio Transport"
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050021 help
22 This builds support for a transports between
23 guest partitions and a host partition.
24
Stefano Stabellini7f254832017-04-05 12:04:01 -070025config NET_9P_XEN
26 depends on XEN
Arnd Bergmann4a806012017-04-19 19:06:39 +020027 select XEN_XENBUS_FRONTEND
Stefano Stabellini7f254832017-04-05 12:04:01 -070028 tristate "9P Xen Transport"
29 help
30 This builds support for a transport for 9pfs between
31 two Xen domains.
32
33
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050034config NET_9P_RDMA
Kees Cook28c50452012-10-02 11:19:39 -070035 depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050036 tristate "9P RDMA Transport (Experimental)"
37 help
Randy Dunlap4ff429e2008-11-12 13:05:17 -080038 This builds support for an RDMA transport.
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050039
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050040config NET_9P_DEBUG
41 bool "Debug information"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050042 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +020043 Say Y if you want the 9P subsystem to log debug information.
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050044
Randy Dunlap4ff429e2008-11-12 13:05:17 -080045endif