Blame view

fs/nfs/Kconfig 5.9 KB
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
1
2
  config NFS_FS
  	tristate "NFS client support"
2813893f8   Iulia Manda   kernel: condition...
3
  	depends on INET && FILE_LOCKING && MULTIUSER
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  	select LOCKD
  	select SUNRPC
  	select NFS_ACL_SUPPORT if NFS_V3_ACL
  	help
  	  Choose Y here if you want to access files residing on other
  	  computers using Sun's Network File System protocol.  To compile
  	  this file system support as a module, choose M here: the module
  	  will be called nfs.
  
  	  To mount file systems exported by NFS servers, you also need to
  	  install the user space mount.nfs command which can be found in
  	  the Linux nfs-utils package, available from http://linux-nfs.org/.
  	  Information about using the mount command is available in the
  	  mount(8) man page.  More detail about the Linux NFS client
  	  implementation is available via the nfs(5) man page.
  
  	  Below you can choose which versions of the NFS protocol are
  	  available in the kernel to mount NFS servers.  Support for NFS
  	  version 2 (RFC 1094) is always available when NFS_FS is selected.
  
  	  To configure a system which mounts its root file system via NFS
  	  at boot time, say Y here, select "Kernel level IP
  	  autoconfiguration" in the NETWORK menu, and select "Root file
  	  system on NFS" below.  You cannot compile this file system as a
  	  module in this case.
  
  	  If unsure, say N.
2ba68002a   Bryan Schumaker   NFS: Make v2 conf...
31
  config NFS_V2
ddda8e0aa   Bryan Schumaker   NFS: Convert v2 i...
32
  	tristate "NFS client support for NFS version 2"
2ba68002a   Bryan Schumaker   NFS: Make v2 conf...
33
34
35
36
37
38
39
  	depends on NFS_FS
  	default y
  	help
  	  This option enables support for version 2 of the NFS protocol
  	  (RFC 1094) in the kernel's NFS client.
  
  	  If unsure, say Y.
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
40
  config NFS_V3
1c606fb74   Bryan Schumaker   NFS: Convert v3 i...
41
  	tristate "NFS client support for NFS version 3"
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
42
  	depends on NFS_FS
981f9face   Bryan Schumaker   NFS: Turn v3 on b...
43
  	default y
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  	help
  	  This option enables support for version 3 of the NFS protocol
  	  (RFC 1813) in the kernel's NFS client.
  
  	  If unsure, say Y.
  
  config NFS_V3_ACL
  	bool "NFS client support for the NFSv3 ACL protocol extension"
  	depends on NFS_V3
  	help
  	  Some NFS servers support an auxiliary NFSv3 ACL protocol that
  	  Sun added to Solaris but never became an official part of the
  	  NFS version 3 protocol.  This protocol extension allows
  	  applications on NFS clients to manipulate POSIX Access Control
  	  Lists on files residing on NFS servers.  NFS servers enforce
  	  ACLs on local files whether this protocol is available or not.
  
  	  Choose Y here if your NFS server supports the Solaris NFSv3 ACL
  	  protocol extension and you want your NFS client to allow
  	  applications to access and modify ACLs on files on the server.
  
  	  Most NFS servers don't support the Solaris NFSv3 ACL protocol
  	  extension.  You can choose N here or specify the "noacl" mount
  	  option to prevent your NFS client from trying to use the NFSv3
  	  ACL protocol.
  
  	  If unsure, say N.
  
  config NFS_V4
89d77c8fa   Bryan Schumaker   NFS: Convert v4 i...
73
  	tristate "NFS client support for NFS version 4"
b3edc2bc1   Trond Myklebust   NFS: NFS_V4 is no...
74
  	depends on NFS_FS
827e34570   Trond Myklebust   SUNRPC: Fix the N...
75
  	select SUNRPC_GSS
e3da87066   Trond Myklebust   NFSv4: The idmapp...
76
  	select KEYS
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
77
78
79
80
81
82
83
  	help
  	  This option enables support for version 4 of the NFS protocol
  	  (RFC 3530) in the kernel's NFS client.
  
  	  To mount NFS servers using NFSv4, you also need to install user
  	  space programs which can be found in the Linux nfs-utils package,
  	  available from http://linux-nfs.org/.
b3edc2bc1   Trond Myklebust   NFS: NFS_V4 is no...
84
  	  If unsure, say Y.
a564b8f03   Mel Gorman   nfs: enable swap ...
85
86
87
88
89
90
91
92
  
  config NFS_SWAP
  	bool "Provide swap over NFS support"
  	default n
  	depends on NFS_FS
  	select SUNRPC_SWAP
  	help
  	  This option enables swapon to work on files located on NFS mounts.
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
93

1efae3814   Ricardo Labiaga   nfs41: Add Kconfi...
94
  config NFS_V4_1
8544a9dc1   Trond Myklebust   NFSv4.1: Remove t...
95
96
  	bool "NFS client support for NFSv4.1"
  	depends on NFS_V4
9e00abc3c   Trond Myklebust   SUNRPC: sunrpc sh...
97
  	select SUNRPC_BACKCHANNEL
1efae3814   Ricardo Labiaga   nfs41: Add Kconfi...
98
99
  	help
  	  This option enables support for minor version 1 of the NFSv4 protocol
54a33b190   Peng Tao   NFS41: make PNFS_...
100
  	  (RFC 5661) in the kernel's NFS client.
1efae3814   Ricardo Labiaga   nfs41: Add Kconfi...
101

3dce9a5c3   Trond Myklebust   NFS: NFSv4.1 is n...
102
  	  If unsure, say N.
1efae3814   Ricardo Labiaga   nfs41: Add Kconfi...
103

42c2c4249   Steve Dickson   NFSv4.2: Added NF...
104
105
106
107
108
109
110
111
  config NFS_V4_2
  	bool "NFS client support for NFSv4.2"
  	depends on NFS_V4_1
  	help
  	  This option enables support for minor version 2 of the NFSv4 protocol
  	  in the kernel's NFS client.
  
  	  If unsure, say N.
02c35fca7   Fred Isaman   NFSv4.1: pnfs: fu...
112
113
  config PNFS_FILE_LAYOUT
  	tristate
e3074507d   Trond Myklebust   NFS: Simplify NFS...
114
  	depends on NFS_V4_1
8c2fabc65   Christoph Hellwig   nfs: fix pnfs Kco...
115
  	default NFS_V4
02c35fca7   Fred Isaman   NFSv4.1: pnfs: fu...
116

155e7524f   Fred Isaman   pnfsblock: add bl...
117
  config PNFS_BLOCK
8cf1fb216   Boaz Harrosh   pnfs: Automatical...
118
  	tristate
e3074507d   Trond Myklebust   NFS: Simplify NFS...
119
  	depends on NFS_V4_1 && BLK_DEV_DM
8c2fabc65   Christoph Hellwig   nfs: fix pnfs Kco...
120
  	default NFS_V4
155e7524f   Fred Isaman   pnfsblock: add bl...
121

c93407d03   Benny Halevy   pnfs-obj: objlayo...
122
  config PNFS_OBJLAYOUT
8cf1fb216   Boaz Harrosh   pnfs: Automatical...
123
  	tristate
e3074507d   Trond Myklebust   NFS: Simplify NFS...
124
  	depends on NFS_V4_1 && SCSI_OSD_ULD
8c2fabc65   Christoph Hellwig   nfs: fix pnfs Kco...
125
  	default NFS_V4
c93407d03   Benny Halevy   pnfs-obj: objlayo...
126

d67ae825a   Tom Haynes   pnfs/flexfiles: A...
127
128
129
130
  config PNFS_FLEXFILE_LAYOUT
  	tristate
  	depends on NFS_V4_1 && NFS_V3
  	default m
db8ac8ba8   Weston Andros Adamson   NFSv4: Send imple...
131
132
133
134
135
136
137
138
139
140
141
  config NFS_V4_1_IMPLEMENTATION_ID_DOMAIN
  	string "NFSv4.1 Implementation ID Domain"
  	depends on NFS_V4_1
  	default "kernel.org"
  	help
  	  This option defines the domain portion of the implementation ID that
  	  may be sent in the NFS exchange_id operation.  The value must be in
  	  the format of a DNS domain name and should be set to the DNS domain
  	  name of the distribution.
  	  If the NFS client is unchanged from the upstream kernel, this
  	  option should be set to the default "kernel.org".
cd3fadece   Chuck Lever   NFS: Set EXCHGID4...
142
143
144
145
146
147
148
149
150
151
  config NFS_V4_1_MIGRATION
  	bool "NFSv4.1 client support for migration"
  	depends on NFS_V4_1
  	default n
  	help
  	  This option makes the NFS client advertise to NFSv4.1 servers that
            it can support NFSv4 migration.
  
            The NFSv4.1 pieces of the Linux NFSv4 migration implementation are
            still experimental.  If you are not an NFSv4 developer, say N here.
f58eda9bc   Steve Dickson   Kconfig: Add Kcon...
152
153
154
155
  config NFS_V4_SECURITY_LABEL
  	bool
  	depends on NFS_V4_2 && SECURITY
  	default y
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
156
157
158
159
160
161
162
  config ROOT_NFS
  	bool "Root file system on NFS"
  	depends on NFS_FS=y && IP_PNP
  	help
  	  If you want your system to mount its root file system via NFS,
  	  choose Y here.  This is common practice for managing systems
  	  without local permanent storage.  For details, read
dc7a08166   J. Bruce Fields   nfs: new subdir D...
163
  	  <file:Documentation/filesystems/nfs/nfsroot.txt>.
97afe47ac   Alexey Dobriyan   fs/Kconfig: move ...
164
165
  
  	  Most people say N here.
3b9ce977b   David Howells   NFS: Permit local...
166
167
  
  config NFS_FSCACHE
4912002ff   Christian Kujau   Remove EXPERIMENT...
168
  	bool "Provide NFS client caching support"
3b9ce977b   David Howells   NFS: Permit local...
169
170
171
172
  	depends on NFS_FS=m && FSCACHE || NFS_FS=y && FSCACHE=y
  	help
  	  Say Y here if you want NFS data to be cached locally on disc through
  	  the general filesystem cache manager
c2e8139c9   Bryan Schumaker   NFS: Use kernel D...
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
  
  config NFS_USE_LEGACY_DNS
  	bool "Use the legacy NFS DNS resolver"
  	depends on NFS_V4
  	help
  	  The kernel now provides a method for translating a host name into an
  	  IP address.  Select Y here if you would rather use your own DNS
  	  resolver script.
  
  	  If unsure, say N
  
  config NFS_USE_KERNEL_DNS
  	bool
  	depends on NFS_V4 && !NFS_USE_LEGACY_DNS
  	select DNS_RESOLVER
  	default y
e27d359e9   Trond Myklebust   SUNRPC/NFS: Add K...
189
190
191
192
193
194
  
  config NFS_DEBUG
  	bool
  	depends on NFS_FS && SUNRPC_DEBUG
  	select CRC32
  	default y