Kconfig 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. config XFS_FS
  2. tristate "XFS filesystem support"
  3. depends on BLOCK
  4. select EXPORTFS
  5. help
  6. XFS is a high performance journaling filesystem which originated
  7. on the SGI IRIX platform. It is completely multi-threaded, can
  8. support large files and large filesystems, extended attributes,
  9. variable block sizes, is extent based, and makes extensive use of
  10. Btrees (directories, extents, free space) to aid both performance
  11. and scalability.
  12. Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
  13. for complete details. This implementation is on-disk compatible
  14. with the IRIX version of XFS.
  15. To compile this file system support as a module, choose M here: the
  16. module will be called xfs. Be aware, however, that if the file
  17. system of your root partition is compiled as a module, you'll need
  18. to use an initial ramdisk (initrd) to boot.
  19. config XFS_QUOTA
  20. bool "XFS Quota support"
  21. depends on XFS_FS
  22. select QUOTACTL
  23. help
  24. If you say Y here, you will be able to set limits for disk usage on
  25. a per user and/or a per group basis under XFS. XFS considers quota
  26. information as filesystem metadata and uses journaling to provide a
  27. higher level guarantee of consistency. The on-disk data format for
  28. quota is also compatible with the IRIX version of XFS, allowing a
  29. filesystem to be migrated between Linux and IRIX without any need
  30. for conversion.
  31. If unsure, say N. More comprehensive documentation can be found in
  32. README.quota in the xfsprogs package. XFS quota can be used either
  33. with or without the generic quota support enabled (CONFIG_QUOTA) -
  34. they are completely independent subsystems.
  35. config XFS_POSIX_ACL
  36. bool "XFS POSIX ACL support"
  37. depends on XFS_FS
  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 XFS_RT
  46. bool "XFS Realtime subvolume support"
  47. depends on XFS_FS
  48. help
  49. If you say Y here you will be able to mount and use XFS filesystems
  50. which contain a realtime subvolume. The realtime subvolume is a
  51. separate area of disk space where only file data is stored. It was
  52. originally designed to provide deterministic data rates suitable
  53. for media streaming applications, but is also useful as a generic
  54. mechanism for ensuring data and metadata/log I/Os are completely
  55. separated. Regular file I/Os are isolated to a separate device
  56. from all other requests, and this can be done quite transparently
  57. to applications via the inherit-realtime directory inode flag.
  58. See the xfs man page in section 5 for additional information.
  59. If unsure, say N.
  60. config XFS_DEBUG
  61. bool "XFS Debugging support (EXPERIMENTAL)"
  62. depends on XFS_FS && EXPERIMENTAL
  63. help
  64. Say Y here to get an XFS build with many debugging features,
  65. including ASSERT checks, function wrappers around macros,
  66. and extra sanity-checking functions in various code paths.
  67. Note that the resulting code will be HUGE and SLOW, and probably
  68. not useful unless you are debugging a particular problem.
  69. Say N unless you are an XFS developer, or you play one on TV.