Kconfig 3.4 KB

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