Kconfig 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_FS_XATTR
  25. bool "Ext4 extended attributes"
  26. depends on EXT4_FS
  27. default y
  28. help
  29. Extended attributes are name:value pairs associated with inodes by
  30. the kernel or by users (see the attr(5) manual page, or visit
  31. <http://acl.bestbits.at/> for details).
  32. If unsure, say N.
  33. You need this for POSIX ACL support on ext4.
  34. config EXT4_FS_POSIX_ACL
  35. bool "Ext4 POSIX Access Control Lists"
  36. depends on EXT4_FS_XATTR
  37. select FS_POSIX_ACL
  38. help
  39. POSIX Access Control Lists (ACLs) support permissions for users and
  40. groups beyond the owner/group/world scheme.
  41. To learn more about Access Control Lists, visit the POSIX ACLs for
  42. Linux website <http://acl.bestbits.at/>.
  43. If you don't know what Access Control Lists are, say N
  44. config EXT4_FS_SECURITY
  45. bool "Ext4 Security Labels"
  46. depends on EXT4_FS_XATTR
  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"