kobject: update the kobject/kset documentation
[deliverable/linux.git] / Documentation / filesystems / ocfs2.txt
CommitLineData
ccd979bd
MF
1OCFS2 filesystem
2==================
3OCFS2 is a general purpose extent based shared disk cluster file
4system with many similarities to ext3. It supports 64 bit inode
5numbers, and has automatically extending metadata groups which may
6also make it attractive for non-clustered use.
7
8You'll want to install the ocfs2-tools package in order to at least
9get "mount.ocfs2" and "ocfs2_hb_ctl".
10
11Project web page: http://oss.oracle.com/projects/ocfs2
12Tools web page: http://oss.oracle.com/projects/ocfs2-tools
13OCFS2 mailing lists: http://oss.oracle.com/projects/ocfs2/mailman/
14
15All code copyright 2005 Oracle except when otherwise noted.
16
17CREDITS:
18Lots of code taken from ext3 and other projects.
19
20Authors in alphabetical order:
21Joel Becker <joel.becker@oracle.com>
22Zach Brown <zach.brown@oracle.com>
23Mark Fasheh <mark.fasheh@oracle.com>
24Kurt Hackel <kurt.hackel@oracle.com>
25Sunil Mushran <sunil.mushran@oracle.com>
26Manish Singh <manish.singh@oracle.com>
27
28Caveats
29=======
30Features which OCFS2 does not support yet:
ccd979bd 31 - extended attributes
ccd979bd
MF
32 - quotas
33 - cluster aware flock
0d419a6a 34 - cluster aware lockf
ccd979bd
MF
35 - Directory change notification (F_NOTIFY)
36 - Distributed Caching (F_SETLEASE/F_GETLEASE/break_lease)
37 - POSIX ACLs
38 - readpages / writepages (not user visible)
39
40Mount options
41=============
42
43OCFS2 supports the following mount options:
44(*) == default
45
46barrier=1 This enables/disables barriers. barrier=0 disables it,
47 barrier=1 enables it.
48errors=remount-ro(*) Remount the filesystem read-only on an error.
49errors=panic Panic and halt the machine if an error occurs.
50intr (*) Allow signals to interrupt cluster operations.
51nointr Do not allow signals to interrupt cluster
52 operations.
bcd5625b
TY
53atime_quantum=60(*) OCFS2 will not update atime unless this number
54 of seconds has passed since the last update.
55 Set to zero to always update atime.
10b0845b
MF
56data=ordered (*) All data are forced directly out to the main file
57 system prior to its metadata being committed to the
58 journal.
59data=writeback Data ordering is not preserved, data may be written
60 into the main file system after its metadata has been
61 committed to the journal.
62preferred_slot=0(*) During mount, try to use this filesystem slot first. If
63 it is in use by another node, the first empty one found
64 will be chosen. Invalid values will be ignored.
This page took 0.223313 seconds and 5 git commands to generate.