Kconfig 3.3 KB

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