Kconfig 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. config XFS_FS
  2. tristate "XFS filesystem support"
  3. select EXPORTFS if NFSD!=n
  4. help
  5. XFS is a high performance journaling filesystem which originated
  6. on the SGI IRIX platform. It is completely multi-threaded, can
  7. support large files and large filesystems, extended attributes,
  8. variable block sizes, is extent based, and makes extensive use of
  9. Btrees (directories, extents, free space) to aid both performance
  10. and scalability.
  11. Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
  12. for complete details. This implementation is on-disk compatible
  13. with the IRIX version of XFS.
  14. To compile this file system support as a module, choose M here: the
  15. module will be called xfs. Be aware, however, that if the file
  16. system of your root partition is compiled as a module, you'll need
  17. to use an initial ramdisk (initrd) to boot.
  18. config XFS_EXPORT
  19. bool
  20. depends on XFS_FS && EXPORTFS
  21. default y
  22. config XFS_QUOTA
  23. bool "XFS Quota support"
  24. depends on XFS_FS
  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_SECURITY
  38. bool "XFS Security Label support"
  39. depends on XFS_FS
  40. help
  41. Security labels support alternative access control models
  42. implemented by security modules like SELinux. This option
  43. enables an extended attribute namespace for inode security
  44. labels in the XFS filesystem.
  45. If you are not using a security module that requires using
  46. extended attributes for inode security labels, say N.
  47. config XFS_POSIX_ACL
  48. bool "XFS POSIX ACL support"
  49. depends on XFS_FS
  50. help
  51. POSIX Access Control Lists (ACLs) support permissions for users and
  52. groups beyond the owner/group/world scheme.
  53. To learn more about Access Control Lists, visit the POSIX ACLs for
  54. Linux website <http://acl.bestbits.at/>.
  55. If you don't know what Access Control Lists are, say N.
  56. config XFS_RT
  57. bool "XFS Realtime support (EXPERIMENTAL)"
  58. depends on XFS_FS && EXPERIMENTAL
  59. help
  60. If you say Y here you will be able to mount and use XFS filesystems
  61. which contain a realtime subvolume. The realtime subvolume is a
  62. separate area of disk space where only file data is stored. The
  63. realtime subvolume is designed to provide very deterministic
  64. data rates suitable for media streaming applications.
  65. See the xfs man page in section 5 for a bit more information.
  66. This feature is unsupported at this time, is not yet fully
  67. functional, and may cause serious problems.
  68. If unsure, say N.