Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 2 | # |
| 3 | # 9P protocol configuration |
| 4 | # |
| 5 | |
| 6 | menuconfig NET_9P |
Eric Van Hensbergen | 87211cd | 2011-05-16 10:46:39 -0500 | [diff] [blame] | 7 | tristate "Plan 9 Resource Sharing Support (9P2000)" |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 8 | 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 Dunlap | 4ff429e | 2008-11-12 13:05:17 -0800 | [diff] [blame] | 16 | if NET_9P |
| 17 | |
Thomas Weißschuh | 1c582c6 | 2021-11-03 20:38:21 +0100 | [diff] [blame] | 18 | config 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 Hensbergen | b530cc7 | 2007-10-23 13:47:31 -0500 | [diff] [blame] | 25 | config NET_9P_VIRTIO |
Eric Van Hensbergen | 87211cd | 2011-05-16 10:46:39 -0500 | [diff] [blame] | 26 | depends on VIRTIO |
| 27 | tristate "9P Virtio Transport" |
Eric Van Hensbergen | b530cc7 | 2007-10-23 13:47:31 -0500 | [diff] [blame] | 28 | help |
| 29 | This builds support for a transports between |
| 30 | guest partitions and a host partition. |
| 31 | |
Stefano Stabellini | 7f25483 | 2017-04-05 12:04:01 -0700 | [diff] [blame] | 32 | config NET_9P_XEN |
| 33 | depends on XEN |
Arnd Bergmann | 4a80601 | 2017-04-19 19:06:39 +0200 | [diff] [blame] | 34 | select XEN_XENBUS_FRONTEND |
Stefano Stabellini | 7f25483 | 2017-04-05 12:04:01 -0700 | [diff] [blame] | 35 | tristate "9P Xen Transport" |
| 36 | help |
| 37 | This builds support for a transport for 9pfs between |
| 38 | two Xen domains. |
| 39 | |
| 40 | |
Tom Tucker | fc79d4b | 2008-10-22 18:47:39 -0500 | [diff] [blame] | 41 | config NET_9P_RDMA |
Arnd Bergmann | 533d1da | 2018-05-25 23:29:59 +0200 | [diff] [blame] | 42 | depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS |
Tom Tucker | fc79d4b | 2008-10-22 18:47:39 -0500 | [diff] [blame] | 43 | tristate "9P RDMA Transport (Experimental)" |
| 44 | help |
Randy Dunlap | 4ff429e | 2008-11-12 13:05:17 -0800 | [diff] [blame] | 45 | This builds support for an RDMA transport. |
Tom Tucker | fc79d4b | 2008-10-22 18:47:39 -0500 | [diff] [blame] | 46 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 47 | config NET_9P_DEBUG |
| 48 | bool "Debug information" |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 49 | help |
Matt LaPlante | 01dd2fb | 2007-10-20 01:34:40 +0200 | [diff] [blame] | 50 | Say Y if you want the 9P subsystem to log debug information. |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 51 | |
Randy Dunlap | 4ff429e | 2008-11-12 13:05:17 -0800 | [diff] [blame] | 52 | endif |