Kconfig 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. config EXT4_FS
  2. tristate "The Extended 4 (ext4) filesystem"
  3. select JBD2
  4. select CRC16
  5. help
  6. This is the next generation of the ext3 filesystem.
  7. Unlike the change from ext2 filesystem to ext3 filesystem,
  8. the on-disk format of ext4 is not forwards compatible with
  9. ext3; it is based on extent maps and it supports 48-bit
  10. physical block numbers. The ext4 filesystem also supports delayed
  11. allocation, persistent preallocation, high resolution time stamps,
  12. and a number of other features to improve performance and speed
  13. up fsck time. For more information, please see the web pages at
  14. http://ext4.wiki.kernel.org.
  15. The ext4 filesystem will support mounting an ext3
  16. filesystem; while there will be some performance gains from
  17. the delayed allocation and inode table readahead, the best
  18. performance gains will require enabling ext4 features in the
  19. filesystem, or formatting a new filesystem as an ext4
  20. filesystem initially.
  21. To compile this file system support as a module, choose M here. The
  22. module will be called ext4.
  23. If unsure, say N.
  24. config EXT4_USE_FOR_EXT23
  25. bool "Use ext4 for ext2/ext3 file systems"
  26. depends on EXT4_FS
  27. depends on EXT3_FS=n || EXT2_FS=n
  28. default y
  29. help
  30. Allow the ext4 file system driver code to be used for ext2 or
  31. ext3 file system mounts. This allows users to reduce their
  32. compiled kernel size by using one file system driver for
  33. ext2, ext3, and ext4 file systems.
  34. config EXT4_FS_XATTR
  35. bool "Ext4 extended attributes"
  36. depends on EXT4_FS
  37. default y
  38. help
  39. Extended attributes are name:value pairs associated with inodes by
  40. the kernel or by users (see the attr(5) manual page, or visit
  41. <http://acl.bestbits.at/> for details).
  42. If unsure, say N.
  43. You need this for POSIX ACL support on ext4.
  44. config EXT4_FS_POSIX_ACL
  45. bool "Ext4 POSIX Access Control Lists"
  46. depends on EXT4_FS_XATTR
  47. select FS_POSIX_ACL
  48. help
  49. POSIX Access Control Lists (ACLs) support permissions for users and
  50. groups beyond the owner/group/world scheme.
  51. To learn more about Access Control Lists, visit the POSIX ACLs for
  52. Linux website <http://acl.bestbits.at/>.
  53. If you don't know what Access Control Lists are, say N
  54. config EXT4_FS_SECURITY
  55. bool "Ext4 Security Labels"
  56. depends on EXT4_FS_XATTR
  57. help
  58. Security labels support alternative access control models
  59. implemented by security modules like SELinux. This option
  60. enables an extended attribute handler for file security
  61. labels in the ext4 filesystem.
  62. If you are not using a security module that requires using
  63. extended attributes for file security labels, say N.
  64. config EXT4_DEBUG
  65. bool "EXT4 debugging support"
  66. depends on EXT4_FS
  67. help
  68. Enables run-time debugging support for the ext4 filesystem.
  69. If you select Y here, then you will be able to turn on debugging
  70. with a command such as "echo 1 > /sys/kernel/debug/ext4/mballoc-debug"