Kconfig 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config OCFS2_FS
  3. tristate "OCFS2 file system support"
  4. depends on INET && SYSFS && CONFIGFS_FS
  5. select BUFFER_HEAD
  6. select JBD2
  7. select CRC32
  8. select QUOTA
  9. select QUOTA_TREE
  10. select FS_POSIX_ACL
  11. select LEGACY_DIRECT_IO
  12. help
  13. OCFS2 is a general purpose extent based shared disk cluster file
  14. system with many similarities to ext3. It supports 64 bit inode
  15. numbers, and has automatically extending metadata groups which may
  16. also make it attractive for non-clustered use.
  17. You'll want to install the ocfs2-tools package in order to at least
  18. get "mount.ocfs2".
  19. Project web page: https://ocfs2.wiki.kernel.org/
  20. Tools web page: https://github.com/markfasheh/ocfs2-tools
  21. OCFS2 mailing lists: https://subspace.kernel.org/lists.linux.dev.html
  22. For more information on OCFS2, see the file
  23. <file:Documentation/filesystems/ocfs2.rst>.
  24. config OCFS2_FS_O2CB
  25. tristate "O2CB Kernelspace Clustering"
  26. depends on OCFS2_FS
  27. default y
  28. help
  29. OCFS2 includes a simple kernelspace clustering package, the OCFS2
  30. Cluster Base. It only requires a very small userspace component
  31. to configure it. This comes with the standard ocfs2-tools package.
  32. O2CB is limited to maintaining a cluster for OCFS2 file systems.
  33. It cannot manage any other cluster applications.
  34. It is always safe to say Y here, as the clustering method is
  35. run-time selectable.
  36. config OCFS2_FS_USERSPACE_CLUSTER
  37. tristate "OCFS2 Userspace Clustering"
  38. depends on OCFS2_FS && DLM
  39. default y
  40. help
  41. This option will allow OCFS2 to use userspace clustering services
  42. in conjunction with the DLM in fs/dlm. If you are using a
  43. userspace cluster manager, say Y here.
  44. It is safe to say Y, as the clustering method is run-time
  45. selectable.
  46. config OCFS2_FS_STATS
  47. bool "OCFS2 statistics"
  48. depends on OCFS2_FS && DEBUG_FS
  49. default y
  50. help
  51. This option allows some fs statistics to be captured. Enabling
  52. this option may increase the memory consumption.
  53. config OCFS2_DEBUG_MASKLOG
  54. bool "OCFS2 logging support"
  55. depends on OCFS2_FS
  56. default y
  57. help
  58. The ocfs2 filesystem has an extensive logging system. The system
  59. allows selection of events to log via files in /sys/o2cb/logmask/.
  60. This option will enlarge your kernel, but it allows debugging of
  61. ocfs2 filesystem issues.
  62. config OCFS2_DEBUG_FS
  63. bool "OCFS2 expensive checks"
  64. depends on OCFS2_FS
  65. default n
  66. help
  67. This option will enable expensive consistency checks. Enable
  68. this option for debugging only as it is likely to decrease
  69. performance of the filesystem.