Kconfig 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. help
  8. XFS is a high performance journaling filesystem which originated
  9. on the SGI IRIX platform. It is completely multi-threaded, can
  10. support large files and large filesystems, extended attributes,
  11. variable block sizes, is extent based, and makes extensive use of
  12. Btrees (directories, extents, free space) to aid both performance
  13. and scalability.
  14. Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
  15. for complete details. This implementation is on-disk compatible
  16. with the IRIX version of XFS.
  17. To compile this file system support as a module, choose M here: the
  18. module will be called xfs. Be aware, however, that if the file
  19. system of your root partition is compiled as a module, you'll need
  20. to use an initial ramdisk (initrd) to boot.
  21. config XFS_QUOTA
  22. bool "XFS Quota support"
  23. depends on XFS_FS
  24. select QUOTACTL
  25. help
  26. If you say Y here, you will be able to set limits for disk usage on
  27. a per user and/or a per group basis under XFS. XFS considers quota
  28. information as filesystem metadata and uses journaling to provide a
  29. higher level guarantee of consistency. The on-disk data format for
  30. quota is also compatible with the IRIX version of XFS, allowing a
  31. filesystem to be migrated between Linux and IRIX without any need
  32. for conversion.
  33. If unsure, say N. More comprehensive documentation can be found in
  34. README.quota in the xfsprogs package. XFS quota can be used either
  35. with or without the generic quota support enabled (CONFIG_QUOTA) -
  36. they are completely independent subsystems.
  37. config XFS_POSIX_ACL
  38. bool "XFS POSIX ACL support"
  39. depends on XFS_FS
  40. select FS_POSIX_ACL
  41. help
  42. POSIX Access Control Lists (ACLs) support permissions for users and
  43. groups beyond the owner/group/world scheme.
  44. To learn more about Access Control Lists, visit the POSIX ACLs for
  45. Linux website <http://acl.bestbits.at/>.
  46. If you don't know what Access Control Lists are, say N.
  47. config XFS_RT
  48. bool "XFS Realtime subvolume support"
  49. depends on XFS_FS
  50. help
  51. If you say Y here you will be able to mount and use XFS filesystems
  52. which contain a realtime subvolume. The realtime subvolume is a
  53. separate area of disk space where only file data is stored. It was
  54. originally designed to provide deterministic data rates suitable
  55. for media streaming applications, but is also useful as a generic
  56. mechanism for ensuring data and metadata/log I/Os are completely
  57. separated. Regular file I/Os are isolated to a separate device
  58. from all other requests, and this can be done quite transparently
  59. to applications via the inherit-realtime directory inode flag.
  60. See the xfs man page in section 5 for additional information.
  61. If unsure, say N.
  62. config XFS_WARN
  63. bool "XFS Verbose Warnings"
  64. depends on XFS_FS && !XFS_DEBUG
  65. help
  66. Say Y here to get an XFS build with many additional warnings.
  67. It converts ASSERT checks to WARN, so will log any out-of-bounds
  68. conditions that occur that would otherwise be missed. It is much
  69. lighter weight than XFS_DEBUG and does not modify algorithms and will
  70. not cause the kernel to panic on non-fatal errors.
  71. However, similar to XFS_DEBUG, it is only advisable to use this if you
  72. are debugging a particular problem.
  73. config XFS_DEBUG
  74. bool "XFS Debugging support"
  75. depends on XFS_FS
  76. help
  77. Say Y here to get an XFS build with many debugging features,
  78. including ASSERT checks, function wrappers around macros,
  79. and extra sanity-checking functions in various code paths.
  80. Note that the resulting code will be HUGE and SLOW, and probably
  81. not useful unless you are debugging a particular problem.
  82. Say N unless you are an XFS developer, or you play one on TV.