Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. To learn more about Access Control Lists, visit the POSIX ACLs for
  46. Linux website <http://acl.bestbits.at/>.
  47. If you don't know what Access Control Lists are, say N.
  48. config XFS_RT
  49. bool "XFS Realtime subvolume support"
  50. depends on XFS_FS
  51. help
  52. If you say Y here you will be able to mount and use XFS filesystems
  53. which contain a realtime subvolume. The realtime subvolume is a
  54. separate area of disk space where only file data is stored. It was
  55. originally designed to provide deterministic data rates suitable
  56. for media streaming applications, but is also useful as a generic
  57. mechanism for ensuring data and metadata/log I/Os are completely
  58. separated. Regular file I/Os are isolated to a separate device
  59. from all other requests, and this can be done quite transparently
  60. to applications via the inherit-realtime directory inode flag.
  61. See the xfs man page in section 5 for additional information.
  62. If unsure, say N.
  63. config XFS_WARN
  64. bool "XFS Verbose Warnings"
  65. depends on XFS_FS && !XFS_DEBUG
  66. help
  67. Say Y here to get an XFS build with many additional warnings.
  68. It converts ASSERT checks to WARN, so will log any out-of-bounds
  69. conditions that occur that would otherwise be missed. It is much
  70. lighter weight than XFS_DEBUG and does not modify algorithms and will
  71. not cause the kernel to panic on non-fatal errors.
  72. However, similar to XFS_DEBUG, it is only advisable to use this if you
  73. are debugging a particular problem.
  74. config XFS_DEBUG
  75. bool "XFS Debugging support"
  76. depends on XFS_FS
  77. help
  78. Say Y here to get an XFS build with many debugging features,
  79. including ASSERT checks, function wrappers around macros,
  80. and extra sanity-checking functions in various code paths.
  81. Note that the resulting code will be HUGE and SLOW, and probably
  82. not useful unless you are debugging a particular problem.
  83. Say N unless you are an XFS developer, or you play one on TV.