Kconfig 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. menu "XFS support"
  2. config XFS_FS
  3. tristate "XFS filesystem support"
  4. select EXPORTFS if NFSD!=n
  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_EXPORT
  20. bool
  21. default y if XFS_FS && EXPORTFS
  22. config XFS_RT
  23. bool "Realtime support (EXPERIMENTAL)"
  24. depends on XFS_FS && EXPERIMENTAL
  25. help
  26. If you say Y here you will be able to mount and use XFS filesystems
  27. which contain a realtime subvolume. The realtime subvolume is a
  28. separate area of disk space where only file data is stored. The
  29. realtime subvolume is designed to provide very deterministic
  30. data rates suitable for media streaming applications.
  31. See the xfs man page in section 5 for a bit more information.
  32. This feature is unsupported at this time, is not yet fully
  33. functional, and may cause serious problems.
  34. If unsure, say N.
  35. config XFS_QUOTA
  36. bool "Quota support"
  37. depends on XFS_FS
  38. help
  39. If you say Y here, you will be able to set limits for disk usage on
  40. a per user and/or a per group basis under XFS. XFS considers quota
  41. information as filesystem metadata and uses journaling to provide a
  42. higher level guarantee of consistency. The on-disk data format for
  43. quota is also compatible with the IRIX version of XFS, allowing a
  44. filesystem to be migrated between Linux and IRIX without any need
  45. for conversion.
  46. If unsure, say N. More comprehensive documentation can be found in
  47. README.quota in the xfsprogs package. XFS quota can be used either
  48. with or without the generic quota support enabled (CONFIG_QUOTA) -
  49. they are completely independent subsystems.
  50. config XFS_SECURITY
  51. bool "Security Label support"
  52. depends on XFS_FS
  53. help
  54. Security labels support alternative access control models
  55. implemented by security modules like SELinux. This option
  56. enables an extended attribute namespace for inode security
  57. labels in the XFS filesystem.
  58. If you are not using a security module that requires using
  59. extended attributes for inode security labels, say N.
  60. config XFS_POSIX_ACL
  61. bool "POSIX ACL support"
  62. depends on XFS_FS
  63. help
  64. POSIX Access Control Lists (ACLs) support permissions for users and
  65. groups beyond the owner/group/world scheme.
  66. To learn more about Access Control Lists, visit the POSIX ACLs for
  67. Linux website <http://acl.bestbits.at/>.
  68. If you don't know what Access Control Lists are, say N.
  69. endmenu