Kconfig 2.9 KB

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