2006-01-16 11:50:04 -05:00
|
|
|
config GFS2_FS
|
2006-04-24 14:14:42 -04:00
|
|
|
tristate "GFS2 file system support"
|
2006-01-16 11:50:04 -05:00
|
|
|
depends on EXPERIMENTAL
|
2006-04-24 14:14:42 -04:00
|
|
|
select FS_POSIX_ACL
|
2006-11-20 10:04:49 -05:00
|
|
|
select CRC32
|
2006-04-24 14:14:42 -04:00
|
|
|
help
|
2007-01-30 17:30:08 -05:00
|
|
|
A cluster filesystem.
|
2006-04-24 14:14:42 -04:00
|
|
|
|
2007-01-30 17:30:08 -05:00
|
|
|
Allows a cluster of computers to simultaneously use a block device
|
|
|
|
that is shared between them (with FC, iSCSI, NBD, etc...). GFS reads
|
|
|
|
and writes to the block device like a local filesystem, but also uses
|
|
|
|
a lock module to allow the computers coordinate their I/O so
|
|
|
|
filesystem consistency is maintained. One of the nifty features of
|
|
|
|
GFS is perfect consistency -- changes made to the filesystem on one
|
|
|
|
machine show up immediately on all other machines in the cluster.
|
2006-01-16 11:50:04 -05:00
|
|
|
|
2007-01-30 17:30:08 -05:00
|
|
|
To use the GFS2 filesystem, you will need to enable one or more of
|
|
|
|
the below locking modules. Documentation and utilities for GFS2 can
|
|
|
|
be found here: http://sources.redhat.com/cluster
|
2006-01-16 11:50:04 -05:00
|
|
|
|
|
|
|
config GFS2_FS_LOCKING_NOLOCK
|
|
|
|
tristate "GFS2 \"nolock\" locking module"
|
|
|
|
depends on GFS2_FS
|
|
|
|
help
|
2007-01-30 17:30:08 -05:00
|
|
|
Single node locking module for GFS2.
|
2006-01-16 11:50:04 -05:00
|
|
|
|
2007-01-30 17:30:08 -05:00
|
|
|
Use this module if you want to use GFS2 on a single node without
|
|
|
|
its clustering features. You can still take advantage of the
|
|
|
|
large file support, and upgrade to running a full cluster later on
|
|
|
|
if required.
|
2006-01-16 11:50:04 -05:00
|
|
|
|
2007-01-30 17:30:08 -05:00
|
|
|
If you will only be using GFS2 in cluster mode, you do not need this
|
|
|
|
module.
|
2006-01-16 11:50:04 -05:00
|
|
|
|
|
|
|
config GFS2_FS_LOCKING_DLM
|
|
|
|
tristate "GFS2 DLM locking module"
|
2007-01-28 11:19:50 -05:00
|
|
|
depends on GFS2_FS && SYSFS && NET && INET && (IPV6 || IPV6=n)
|
2006-12-12 05:16:25 -05:00
|
|
|
select IP_SCTP if DLM_SCTP
|
|
|
|
select CONFIGFS_FS
|
2006-01-16 11:50:04 -05:00
|
|
|
select DLM
|
|
|
|
help
|
2007-01-30 17:30:08 -05:00
|
|
|
Multiple node locking module for GFS2
|
2006-01-16 11:50:04 -05:00
|
|
|
|
2007-01-30 17:30:08 -05:00
|
|
|
Most users of GFS2 will require this module. It provides the locking
|
|
|
|
interface between GFS2 and the DLM, which is required to use GFS2
|
|
|
|
in a cluster environment.
|