Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. config XFS_FS
  2. tristate "XFS filesystem support"
  3. depends on BLOCK
  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_QUOTA
  19. bool "XFS Quota support"
  20. depends on XFS_FS
  21. help
  22. If you say Y here, you will be able to set limits for disk usage on
  23. a per user and/or a per group basis under XFS. XFS considers quota
  24. information as filesystem metadata and uses journaling to provide a
  25. higher level guarantee of consistency. The on-disk data format for
  26. quota is also compatible with the IRIX version of XFS, allowing a
  27. filesystem to be migrated between Linux and IRIX without any need
  28. for conversion.
  29. If unsure, say N. More comprehensive documentation can be found in
  30. README.quota in the xfsprogs package. XFS quota can be used either
  31. with or without the generic quota support enabled (CONFIG_QUOTA) -
  32. they are completely independent subsystems.
  33. config XFS_POSIX_ACL
  34. bool "XFS POSIX ACL support"
  35. depends on XFS_FS
  36. help
  37. POSIX Access Control Lists (ACLs) support permissions for users and
  38. groups beyond the owner/group/world scheme.
  39. To learn more about Access Control Lists, visit the POSIX ACLs for
  40. Linux website <http://acl.bestbits.at/>.
  41. If you don't know what Access Control Lists are, say N.
  42. config XFS_RT
  43. bool "XFS Realtime subvolume support"
  44. depends on XFS_FS
  45. help
  46. If you say Y here you will be able to mount and use XFS filesystems
  47. which contain a realtime subvolume. The realtime subvolume is a
  48. separate area of disk space where only file data is stored. It was
  49. originally designed to provide deterministic data rates suitable
  50. for media streaming applications, but is also useful as a generic
  51. mechanism for ensuring data and metadata/log I/Os are completely
  52. separated. Regular file I/Os are isolated to a separate device
  53. from all other requests, and this can be done quite transparently
  54. to applications via the inherit-realtime directory inode flag.
  55. See the xfs man page in section 5 for additional information.
  56. If unsure, say N.