Kconfig 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. config REISERFS_FS
  2. tristate "Reiserfs support"
  3. help
  4. Stores not just filenames but the files themselves in a balanced
  5. tree. Uses journalling.
  6. Balanced trees are more efficient than traditional file system
  7. architectural foundations.
  8. In general, ReiserFS is as fast as ext2, but is very efficient with
  9. large directories and small files. Additional patches are needed
  10. for NFS and quotas, please see <http://www.namesys.com/> for links.
  11. It is more easily extended to have features currently found in
  12. database and keyword search systems than block allocation based file
  13. systems are. The next version will be so extended, and will support
  14. plugins consistent with our motto ``It takes more than a license to
  15. make source code open.''
  16. Read <http://www.namesys.com/> to learn more about reiserfs.
  17. Sponsored by Threshold Networks, Emusic.com, and Bigstorage.com.
  18. If you like it, you can pay us to add new features to it that you
  19. need, buy a support contract, or pay us to port it to another OS.
  20. config REISERFS_CHECK
  21. bool "Enable reiserfs debug mode"
  22. depends on REISERFS_FS
  23. help
  24. If you set this to Y, then ReiserFS will perform every check it can
  25. possibly imagine of its internal consistency throughout its
  26. operation. It will also go substantially slower. More than once we
  27. have forgotten that this was on, and then gone despondent over the
  28. latest benchmarks.:-) Use of this option allows our team to go all
  29. out in checking for consistency when debugging without fear of its
  30. effect on end users. If you are on the verge of sending in a bug
  31. report, say Y and you might get a useful error message. Almost
  32. everyone should say N.
  33. config REISERFS_PROC_INFO
  34. bool "Stats in /proc/fs/reiserfs"
  35. depends on REISERFS_FS && PROC_FS
  36. help
  37. Create under /proc/fs/reiserfs a hierarchy of files, displaying
  38. various ReiserFS statistics and internal data at the expense of
  39. making your kernel or module slightly larger (+8 KB). This also
  40. increases the amount of kernel memory required for each mount.
  41. Almost everyone but ReiserFS developers and people fine-tuning
  42. reiserfs or tracing problems should say N.
  43. config REISERFS_FS_XATTR
  44. bool "ReiserFS extended attributes"
  45. depends on REISERFS_FS
  46. help
  47. Extended attributes are name:value pairs associated with inodes by
  48. the kernel or by users (see the attr(5) manual page, or visit
  49. <http://acl.bestbits.at/> for details).
  50. If unsure, say N.
  51. config REISERFS_FS_POSIX_ACL
  52. bool "ReiserFS POSIX Access Control Lists"
  53. depends on REISERFS_FS_XATTR
  54. select FS_POSIX_ACL
  55. help
  56. Posix Access Control Lists (ACLs) support permissions for users and
  57. groups beyond the owner/group/world scheme.
  58. To learn more about Access Control Lists, visit the Posix ACLs for
  59. Linux website <http://acl.bestbits.at/>.
  60. If you don't know what Access Control Lists are, say N
  61. config REISERFS_FS_SECURITY
  62. bool "ReiserFS Security Labels"
  63. depends on REISERFS_FS_XATTR
  64. help
  65. Security labels support alternative access control models
  66. implemented by security modules like SELinux. This option
  67. enables an extended attribute handler for file security
  68. labels in the ReiserFS filesystem.
  69. If you are not using a security module that requires using
  70. extended attributes for file security labels, say N.