diff options
author | Roman Zippel | 2005-11-30 04:34:41 +0100 |
---|---|---|
committer | Linus Torvalds | 2005-11-30 04:47:03 +0100 |
commit | b0b623c3b22d57d6941b200321779d56c4e79e6b (patch) | |
tree | a2d9a2e047ff4cb5a9f7123084a00b2c3ecc23fa /fs/hfsplus/hfsplus_fs.h | |
parent | [PATCH] reiserfs: handle cnode allocation failure gracefully (diff) | |
download | kernel-qcow2-linux-b0b623c3b22d57d6941b200321779d56c4e79e6b.tar.gz kernel-qcow2-linux-b0b623c3b22d57d6941b200321779d56c4e79e6b.tar.xz kernel-qcow2-linux-b0b623c3b22d57d6941b200321779d56c4e79e6b.zip |
[PATCH] hfsplus: don't modify journaled volume
Access to a journaled HFS+ volume is not officially supported under Linux, so
mount such a volume read-only, but users can override this behaviour using the
"force" mount option.
The minimum requirement to relax this check is to at least check that the
journal is empty and so nothing needs to be replayed to make sure the volume
is consistent.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/hfsplus/hfsplus_fs.h')
-rw-r--r-- | fs/hfsplus/hfsplus_fs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hfsplus/hfsplus_fs.h b/fs/hfsplus/hfsplus_fs.h index c60e5635498d..df16fcbff3fb 100644 --- a/fs/hfsplus/hfsplus_fs.h +++ b/fs/hfsplus/hfsplus_fs.h @@ -151,6 +151,7 @@ struct hfsplus_sb_info { #define HFSPLUS_SB_WRITEBACKUP 0x0001 #define HFSPLUS_SB_NODECOMPOSE 0x0002 +#define HFSPLUS_SB_FORCE 0x0004 struct hfsplus_inode_info { |