Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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_POSIX_ACL
  37. bool "Ext4 POSIX Access Control Lists"
  38. select FS_POSIX_ACL
  39. help
  40. POSIX Access Control Lists (ACLs) support permissions for users and
  41. groups beyond the owner/group/world scheme.
  42. To learn more about Access Control Lists, visit the POSIX ACLs for
  43. Linux website <http://acl.bestbits.at/>.
  44. If you don't know what Access Control Lists are, say N
  45. config EXT4_FS_SECURITY
  46. bool "Ext4 Security Labels"
  47. help
  48. Security labels support alternative access control models
  49. implemented by security modules like SELinux. This option
  50. enables an extended attribute handler for file security
  51. labels in the ext4 filesystem.
  52. If you are not using a security module that requires using
  53. extended attributes for file security labels, say N.
  54. config EXT4_DEBUG
  55. bool "EXT4 debugging support"
  56. depends on EXT4_FS
  57. help
  58. Enables run-time debugging support for the ext4 filesystem.
  59. If you select Y here, then you will be able to turn on debugging
  60. with a command such as "echo 1 > /sys/kernel/debug/ext4/mballoc-debug"