decon: merge all into decon_data_path
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / fs / Kconfig
1 #
2 # File system configuration
3 #
4
5 menu "File systems"
6
7 # Use unaligned word dcache accesses
8 config DCACHE_WORD_ACCESS
9 bool
10
11 config INTERRUPTIBLE_SYNC
12 bool "Support interruptible sync for Samsung Mobile Device"
13 default y
14
15 if BLOCK
16
17 source "fs/ext2/Kconfig"
18 source "fs/ext4/Kconfig"
19 source "fs/jbd2/Kconfig"
20
21 config FS_MBCACHE
22 # Meta block cache for Extended Attributes (ext2/ext3/ext4)
23 tristate
24 default y if EXT2_FS=y && EXT2_FS_XATTR
25 default y if EXT4_FS=y
26 default m if EXT2_FS_XATTR || EXT4_FS
27
28 source "fs/reiserfs/Kconfig"
29 source "fs/jfs/Kconfig"
30
31 source "fs/xfs/Kconfig"
32 source "fs/gfs2/Kconfig"
33 source "fs/ocfs2/Kconfig"
34 source "fs/btrfs/Kconfig"
35 source "fs/nilfs2/Kconfig"
36 source "fs/f2fs/Kconfig"
37
38 config FS_DAX
39 bool "Direct Access (DAX) support"
40 depends on MMU
41 depends on !(ARM || MIPS || SPARC)
42 help
43 Direct Access (DAX) can be used on memory-backed block devices.
44 If the block device supports DAX and the filesystem supports DAX,
45 then you can avoid using the pagecache to buffer I/Os. Turning
46 on this option will compile in support for DAX; you will need to
47 mount the filesystem using the -o dax option.
48
49 If you do not have a block device that is capable of using this,
50 or if unsure, say N. Saying Y will increase the size of the kernel
51 by about 5kB.
52
53 config FS_DAX_PMD
54 bool
55 default FS_DAX
56 depends on FS_DAX
57 depends on BROKEN
58
59 endif # BLOCK
60
61 # Posix ACL utility routines
62 #
63 # Note: Posix ACLs can be implemented without these helpers. Never use
64 # this symbol for ifdefs in core code.
65 #
66 config FS_POSIX_ACL
67 def_bool n
68
69 config EXPORTFS
70 tristate
71
72 config FILE_LOCKING
73 bool "Enable POSIX file locking API" if EXPERT
74 default y
75 help
76 This option enables standard file locking support, required
77 for filesystems like NFS and for the flock() system
78 call. Disabling this option saves about 11k.
79
80 source "fs/crypto/Kconfig"
81
82 source "fs/notify/Kconfig"
83
84 source "fs/quota/Kconfig"
85
86 source "fs/autofs4/Kconfig"
87 source "fs/fuse/Kconfig"
88 source "fs/overlayfs/Kconfig"
89
90 menu "Caches"
91
92 source "fs/fscache/Kconfig"
93 source "fs/cachefiles/Kconfig"
94
95 endmenu
96
97 if BLOCK
98 menu "CD-ROM/DVD Filesystems"
99
100 source "fs/isofs/Kconfig"
101 source "fs/udf/Kconfig"
102
103 endmenu
104 endif # BLOCK
105
106 if BLOCK
107 menu "DOS/FAT/NT Filesystems"
108
109 source "fs/fat/Kconfig"
110 source "fs/sdfat/Kconfig"
111 source "fs/ntfs/Kconfig"
112
113 endmenu
114 endif # BLOCK
115
116 menu "Pseudo filesystems"
117
118 source "fs/proc/Kconfig"
119 source "fs/kernfs/Kconfig"
120 source "fs/sysfs/Kconfig"
121
122 config TMPFS
123 bool "Tmpfs virtual memory file system support (former shm fs)"
124 depends on SHMEM
125 help
126 Tmpfs is a file system which keeps all files in virtual memory.
127
128 Everything in tmpfs is temporary in the sense that no files will be
129 created on your hard drive. The files live in memory and swap
130 space. If you unmount a tmpfs instance, everything stored therein is
131 lost.
132
133 See <file:Documentation/filesystems/tmpfs.txt> for details.
134
135 config TMPFS_POSIX_ACL
136 bool "Tmpfs POSIX Access Control Lists"
137 depends on TMPFS
138 select TMPFS_XATTR
139 select FS_POSIX_ACL
140 help
141 POSIX Access Control Lists (ACLs) support additional access rights
142 for users and groups beyond the standard owner/group/world scheme,
143 and this option selects support for ACLs specifically for tmpfs
144 filesystems.
145
146 If you've selected TMPFS, it's possible that you'll also need
147 this option as there are a number of Linux distros that require
148 POSIX ACL support under /dev for certain features to work properly.
149 For example, some distros need this feature for ALSA-related /dev
150 files for sound to work properly. In short, if you're not sure,
151 say Y.
152
153 To learn more about Access Control Lists, visit the POSIX ACLs for
154 Linux website <http://acl.bestbits.at/>.
155
156 config TMPFS_XATTR
157 bool "Tmpfs extended attributes"
158 depends on TMPFS
159 default n
160 help
161 Extended attributes are name:value pairs associated with inodes by
162 the kernel or by users (see the attr(5) manual page, or visit
163 <http://acl.bestbits.at/> for details).
164
165 Currently this enables support for the trusted.* and
166 security.* namespaces.
167
168 You need this for POSIX ACL support on tmpfs.
169
170 If unsure, say N.
171
172 config HUGETLBFS
173 bool "HugeTLB file system support"
174 depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \
175 SYS_SUPPORTS_HUGETLBFS || BROKEN
176 help
177 hugetlbfs is a filesystem backing for HugeTLB pages, based on
178 ramfs. For architectures that support it, say Y here and read
179 <file:Documentation/vm/hugetlbpage.txt> for details.
180
181 If unsure, say N.
182
183 config HUGETLB_PAGE
184 def_bool HUGETLBFS
185
186 source "fs/configfs/Kconfig"
187 source "fs/efivarfs/Kconfig"
188
189 endmenu
190
191 menuconfig MISC_FILESYSTEMS
192 bool "Miscellaneous filesystems"
193 default y
194 ---help---
195 Say Y here to get to see options for various miscellaneous
196 filesystems, such as filesystems that came from other
197 operating systems.
198
199 This option alone does not add any kernel code.
200
201 If you say N, all options in this submenu will be skipped and
202 disabled; if unsure, say Y here.
203
204 if MISC_FILESYSTEMS
205
206 source "fs/adfs/Kconfig"
207 source "fs/affs/Kconfig"
208 source "fs/ecryptfs/Kconfig"
209 source "fs/sdcardfs/Kconfig"
210 source "fs/hfs/Kconfig"
211 source "fs/hfsplus/Kconfig"
212 source "fs/befs/Kconfig"
213 source "fs/bfs/Kconfig"
214 source "fs/efs/Kconfig"
215 source "fs/jffs2/Kconfig"
216 # UBIFS File system configuration
217 source "fs/ubifs/Kconfig"
218 source "fs/logfs/Kconfig"
219 source "fs/cramfs/Kconfig"
220 source "fs/squashfs/Kconfig"
221 source "fs/freevxfs/Kconfig"
222 source "fs/minix/Kconfig"
223 source "fs/omfs/Kconfig"
224 source "fs/hpfs/Kconfig"
225 source "fs/qnx4/Kconfig"
226 source "fs/qnx6/Kconfig"
227 source "fs/romfs/Kconfig"
228 source "fs/pstore/Kconfig"
229 source "fs/sysv/Kconfig"
230 source "fs/ufs/Kconfig"
231 source "fs/exofs/Kconfig"
232
233 endif # MISC_FILESYSTEMS
234
235 source "fs/exofs/Kconfig.ore"
236
237 menuconfig NETWORK_FILESYSTEMS
238 bool "Network File Systems"
239 default y
240 depends on NET
241 ---help---
242 Say Y here to get to see options for network filesystems and
243 filesystem-related networking code, such as NFS daemon and
244 RPCSEC security modules.
245
246 This option alone does not add any kernel code.
247
248 If you say N, all options in this submenu will be skipped and
249 disabled; if unsure, say Y here.
250
251 if NETWORK_FILESYSTEMS
252
253 source "fs/nfs/Kconfig"
254 source "fs/nfsd/Kconfig"
255
256 config GRACE_PERIOD
257 tristate
258
259 config LOCKD
260 tristate
261 depends on FILE_LOCKING
262 select GRACE_PERIOD
263
264 config LOCKD_V4
265 bool
266 depends on NFSD_V3 || NFS_V3
267 depends on FILE_LOCKING
268 default y
269
270 config NFS_ACL_SUPPORT
271 tristate
272 select FS_POSIX_ACL
273
274 config NFS_COMMON
275 bool
276 depends on NFSD || NFS_FS || LOCKD
277 default y
278
279 source "net/sunrpc/Kconfig"
280 source "fs/ceph/Kconfig"
281 source "fs/cifs/Kconfig"
282 source "fs/ncpfs/Kconfig"
283 source "fs/coda/Kconfig"
284 source "fs/afs/Kconfig"
285 source "fs/9p/Kconfig"
286
287 endif # NETWORK_FILESYSTEMS
288
289 source "fs/nls/Kconfig"
290 source "fs/dlm/Kconfig"
291
292 endmenu