Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config GFS2_FS
  2. tristate "GFS2 file system support"
  3. default m
  4. depends on EXPERIMENTAL
  5. select FS_POSIX_ACL
  6. select SYSFS
  7. help
  8. A cluster filesystem.
  9. Allows a cluster of computers to simultaneously use a block device
  10. that is shared between them (with FC, iSCSI, NBD, etc...). GFS reads
  11. and writes to the block device like a local filesystem, but also uses
  12. a lock module to allow the computers coordinate their I/O so
  13. filesystem consistency is maintained. One of the nifty features of
  14. GFS is perfect consistency -- changes made to the filesystem on one
  15. machine show up immediately on all other machines in the cluster.
  16. To use the GFS2 filesystem, you will need to enable one or more of
  17. the below locking modules. Documentation and utilities for GFS2 can
  18. be found here: http://sources.redhat.com/cluster/gfs/
  19. config GFS2_FS_LOCKING_NOLOCK
  20. tristate "GFS2 \"nolock\" locking module"
  21. depends on GFS2_FS
  22. help
  23. Single node locking module for GFS2.
  24. Use this module if you want to use GFS2 on a single node without
  25. its clustering features. You can still take advantage of the
  26. large file support, and upgrade to running a full cluster later on
  27. if required.
  28. If you will only be using GFS2 in cluster mode, you do not need this
  29. module.
  30. config GFS2_FS_LOCKING_DLM
  31. tristate "GFS2 DLM locking module"
  32. depends on GFS2_FS
  33. select DLM
  34. help
  35. Multiple node locking module for GFS2
  36. Most users of GFS2 will require this module. It provides the locking
  37. interface between GFS2 and the DLM, which is required to use GFS2
  38. in a cluster environment.