Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Alexey Dobriyan | 0fcb440 | 2009-01-22 11:16:42 +0300 | [diff] [blame] | 2 | config 9P_FS |
Eric Van Hensbergen | 87211cd | 2011-05-16 10:46:39 -0500 | [diff] [blame] | 3 | tristate "Plan 9 Resource Sharing Support (9P2000)" |
| 4 | depends on INET && NET_9P |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 5 | select NETFS_SUPPORT |
Alexey Dobriyan | 0fcb440 | 2009-01-22 11:16:42 +0300 | [diff] [blame] | 6 | help |
| 7 | If you say Y here, you will get experimental support for |
| 8 | Plan 9 resource sharing via the 9P2000 protocol. |
| 9 | |
| 10 | See <http://v9fs.sf.net> for more information. |
| 11 | |
| 12 | If unsure, say N. |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 13 | |
Randy Dunlap | 255614c | 2011-01-02 06:15:54 +0000 | [diff] [blame] | 14 | if 9P_FS |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 15 | config 9P_FSCACHE |
Kees Cook | c904197 | 2013-01-16 18:54:02 -0800 | [diff] [blame] | 16 | bool "Enable 9P client caching support" |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 17 | depends on 9P_FS=m && FSCACHE || 9P_FS=y && FSCACHE=y |
| 18 | help |
| 19 | Choose Y here to enable persistent, read-only local |
| 20 | caching support for 9p clients using FS-Cache |
| 21 | |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 22 | |
| 23 | config 9P_FS_POSIX_ACL |
| 24 | bool "9P POSIX Access Control Lists" |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 25 | select FS_POSIX_ACL |
| 26 | help |
| 27 | POSIX Access Control Lists (ACLs) support permissions for users and |
| 28 | groups beyond the owner/group/world scheme. |
| 29 | |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 30 | If you don't know what Access Control Lists are, say N |
Randy Dunlap | 255614c | 2011-01-02 06:15:54 +0000 | [diff] [blame] | 31 | |
| 32 | endif |
Jim Garlick | d9a7385 | 2013-05-29 12:09:39 -0700 | [diff] [blame] | 33 | |
| 34 | |
| 35 | config 9P_FS_SECURITY |
Krzysztof Kozlowski | 1f5bd6a | 2019-11-20 21:43:40 +0800 | [diff] [blame] | 36 | bool "9P Security Labels" |
| 37 | depends on 9P_FS |
| 38 | help |
| 39 | Security labels support alternative access control models |
| 40 | implemented by security modules like SELinux. This option |
| 41 | enables an extended attribute handler for file security |
| 42 | labels in the 9P filesystem. |
Jim Garlick | d9a7385 | 2013-05-29 12:09:39 -0700 | [diff] [blame] | 43 | |
Krzysztof Kozlowski | 1f5bd6a | 2019-11-20 21:43:40 +0800 | [diff] [blame] | 44 | If you are not using a security module that requires using |
| 45 | extended attributes for file security labels, say N. |