diff options
author | Theodore Ts'o <tytso@mit.edu> | 2012-03-03 17:56:23 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-03-03 17:56:23 -0500 |
commit | 39ef17f1b0613b46c6973596525c2bc816d90b5b (patch) | |
tree | c07e2dcd3cd21d7d5db0203263e5efae63a02729 /fs/ext4/ext4.h | |
parent | c64db50e76c4bf68c0a84379d7bd70daada531b4 (diff) |
ext4: simplify handling of the errors=* mount options
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index df93dc196514..d70b981b85fb 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -924,6 +924,7 @@ struct ext4_inode_info { #define EXT4_MOUNT_ERRORS_CONT 0x00010 /* Continue on errors */ #define EXT4_MOUNT_ERRORS_RO 0x00020 /* Remount fs ro on errors */ #define EXT4_MOUNT_ERRORS_PANIC 0x00040 /* Panic on errors */ +#define EXT4_MOUNT_ERRORS_MASK 0x00070 #define EXT4_MOUNT_MINIX_DF 0x00080 /* Mimics the Minix statfs */ #define EXT4_MOUNT_NOLOAD 0x00100 /* Don't use existing journal*/ #define EXT4_MOUNT_DATA_FLAGS 0x00C00 /* Mode for data writes: */ |