blob: 3d11fec3a8dc7a3704513a7c048cd61d40a5254c [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 depends on NET
8 tristate "Plan 9 Resource Sharing Support (9P2000)"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05009 help
10 If you say Y here, you will get experimental support for
11 Plan 9 resource sharing via the 9P2000 protocol.
12
13 See <http://v9fs.sf.net> for more information.
14
15 If unsure, say N.
16
Randy Dunlap4ff429e2008-11-12 13:05:17 -080017if NET_9P
18
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050019config NET_9P_VIRTIO
Eric Van Hensbergen87211cd2011-05-16 10:46:39 -050020 depends on VIRTIO
21 tristate "9P Virtio Transport"
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050022 help
23 This builds support for a transports between
24 guest partitions and a host partition.
25
Stefano Stabellini7f254832017-04-05 12:04:01 -070026config NET_9P_XEN
27 depends on XEN
Arnd Bergmann4a806012017-04-19 19:06:39 +020028 select XEN_XENBUS_FRONTEND
Stefano Stabellini7f254832017-04-05 12:04:01 -070029 tristate "9P Xen Transport"
30 help
31 This builds support for a transport for 9pfs between
32 two Xen domains.
33
34
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050035config NET_9P_RDMA
Arnd Bergmann533d1da2018-05-25 23:29:59 +020036 depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050037 tristate "9P RDMA Transport (Experimental)"
38 help
Randy Dunlap4ff429e2008-11-12 13:05:17 -080039 This builds support for an RDMA transport.
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050040
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050041config NET_9P_DEBUG
42 bool "Debug information"
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050043 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +020044 Say Y if you want the 9P subsystem to log debug information.
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050045
Randy Dunlap4ff429e2008-11-12 13:05:17 -080046endif