Kconfig 1.5 KB

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