blob: c0791cbacad91e614652be6e10a868099107098e [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001config GFS2_FS
Steven Whitehouseb5ea3e12006-04-24 14:14:42 -04002 tristate "GFS2 file system support"
David Teiglandb3b94fa2006-01-16 16:50:04 +00003 depends on EXPERIMENTAL
Steven Whitehouseb5ea3e12006-04-24 14:14:42 -04004 select FS_POSIX_ACL
Steven Whitehousefa2ecfc5e2006-11-20 10:04:49 -05005 select CRC32
Steven Whitehouseb5ea3e12006-04-24 14:14:42 -04006 help
7 A cluster filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008
Steven Whitehouseb5ea3e12006-04-24 14:14:42 -04009 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.
David Teiglandb3b94fa2006-01-16 16:50:04 +000016
17 To use the GFS2 filesystem, you will need to enable one or more of
18 the below locking modules. Documentation and utilities for GFS2 can
David Teiglanda4644182006-06-22 15:29:57 -040019 be found here: http://sources.redhat.com/cluster
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
21config GFS2_FS_LOCKING_NOLOCK
22 tristate "GFS2 \"nolock\" locking module"
23 depends on GFS2_FS
24 help
25 Single node locking module for GFS2.
26
27 Use this module if you want to use GFS2 on a single node without
28 its clustering features. You can still take advantage of the
29 large file support, and upgrade to running a full cluster later on
30 if required.
31
32 If you will only be using GFS2 in cluster mode, you do not need this
33 module.
34
35config GFS2_FS_LOCKING_DLM
36 tristate "GFS2 DLM locking module"
37 depends on GFS2_FS
38 select DLM
39 help
40 Multiple node locking module for GFS2
41
42 Most users of GFS2 will require this module. It provides the locking
43 interface between GFS2 and the DLM, which is required to use GFS2
44 in a cluster environment.
45