Kconfig 2.4 KB

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