Kconfig 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. config XFS_FS
  2. tristate "XFS filesystem support"
  3. depends on BLOCK
  4. depends on (64BIT || LBDAF)
  5. select EXPORTFS
  6. select LIBCRC32C
  7. select FS_IOMAP
  8. help
  9. XFS is a high performance journaling filesystem which originated
  10. on the SGI IRIX platform. It is completely multi-threaded, can
  11. support large files and large filesystems, extended attributes,
  12. variable block sizes, is extent based, and makes extensive use of
  13. Btrees (directories, extents, free space) to aid both performance
  14. and scalability.
  15. Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
  16. for complete details. This implementation is on-disk compatible
  17. with the IRIX version of XFS.
  18. To compile this file system support as a module, choose M here: the
  19. module will be called xfs. Be aware, however, that if the file
  20. system of your root partition is compiled as a module, you'll need
  21. to use an initial ramdisk (initrd) to boot.
  22. config XFS_QUOTA
  23. bool "XFS Quota support"
  24. depends on XFS_FS
  25. select QUOTACTL
  26. help
  27. If you say Y here, you will be able to set limits for disk usage on
  28. a per user and/or a per group basis under XFS. XFS considers quota
  29. information as filesystem metadata and uses journaling to provide a
  30. higher level guarantee of consistency. The on-disk data format for
  31. quota is also compatible with the IRIX version of XFS, allowing a
  32. filesystem to be migrated between Linux and IRIX without any need
  33. for conversion.
  34. If unsure, say N. More comprehensive documentation can be found in
  35. README.quota in the xfsprogs package. XFS quota can be used either
  36. with or without the generic quota support enabled (CONFIG_QUOTA) -
  37. they are completely independent subsystems.
  38. config XFS_POSIX_ACL
  39. bool "XFS POSIX ACL support"
  40. depends on XFS_FS
  41. select FS_POSIX_ACL
  42. help
  43. POSIX Access Control Lists (ACLs) support permissions for users and
  44. groups beyond the owner/group/world scheme.
  45. If you don't know what Access Control Lists are, say N.
  46. config XFS_RT
  47. bool "XFS Realtime subvolume support"
  48. depends on XFS_FS
  49. help
  50. If you say Y here you will be able to mount and use XFS filesystems
  51. which contain a realtime subvolume. The realtime subvolume is a
  52. separate area of disk space where only file data is stored. It was
  53. originally designed to provide deterministic data rates suitable
  54. for media streaming applications, but is also useful as a generic
  55. mechanism for ensuring data and metadata/log I/Os are completely
  56. separated. Regular file I/Os are isolated to a separate device
  57. from all other requests, and this can be done quite transparently
  58. to applications via the inherit-realtime directory inode flag.
  59. See the xfs man page in section 5 for additional information.
  60. If unsure, say N.
  61. config XFS_ONLINE_SCRUB
  62. bool "XFS online metadata check support"
  63. default n
  64. depends on XFS_FS
  65. help
  66. If you say Y here you will be able to check metadata on a
  67. mounted XFS filesystem. This feature is intended to reduce
  68. filesystem downtime by supplementing xfs_repair. The key
  69. advantage here is to look for problems proactively so that
  70. they can be dealt with in a controlled manner.
  71. This feature is considered EXPERIMENTAL. Use with caution!
  72. See the xfs_scrub man page in section 8 for additional information.
  73. If unsure, say N.
  74. config XFS_ONLINE_REPAIR
  75. bool "XFS online metadata repair support"
  76. default n
  77. depends on XFS_FS && XFS_ONLINE_SCRUB
  78. help
  79. If you say Y here you will be able to repair metadata on a
  80. mounted XFS filesystem. This feature is intended to reduce
  81. filesystem downtime by fixing minor problems before they cause the
  82. filesystem to go down. However, it requires that the filesystem be
  83. formatted with secondary metadata, such as reverse mappings and inode
  84. parent pointers.
  85. This feature is considered EXPERIMENTAL. Use with caution!
  86. See the xfs_scrub man page in section 8 for additional information.
  87. If unsure, say N.
  88. config XFS_WARN
  89. bool "XFS Verbose Warnings"
  90. depends on XFS_FS && !XFS_DEBUG
  91. help
  92. Say Y here to get an XFS build with many additional warnings.
  93. It converts ASSERT checks to WARN, so will log any out-of-bounds
  94. conditions that occur that would otherwise be missed. It is much
  95. lighter weight than XFS_DEBUG and does not modify algorithms and will
  96. not cause the kernel to panic on non-fatal errors.
  97. However, similar to XFS_DEBUG, it is only advisable to use this if you
  98. are debugging a particular problem.
  99. config XFS_DEBUG
  100. bool "XFS Debugging support"
  101. depends on XFS_FS
  102. help
  103. Say Y here to get an XFS build with many debugging features,
  104. including ASSERT checks, function wrappers around macros,
  105. and extra sanity-checking functions in various code paths.
  106. Note that the resulting code will be HUGE and SLOW, and probably
  107. not useful unless you are debugging a particular problem.
  108. Say N unless you are an XFS developer, or you play one on TV.
  109. config XFS_ASSERT_FATAL
  110. bool "XFS fatal asserts"
  111. default y
  112. depends on XFS_FS && XFS_DEBUG
  113. help
  114. Set the default DEBUG mode ASSERT failure behavior.
  115. Say Y here to cause DEBUG mode ASSERT failures to result in fatal
  116. errors that BUG() the kernel by default. If you say N, ASSERT failures
  117. result in warnings.
  118. This behavior can be modified at runtime via sysfs.