diff options
author | Theodore Ts'o <tytso@mit.edu> | 2010-08-01 23:14:20 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-08-01 23:14:20 -0400 |
commit | 8b67f04ab9de5d8f3a71aef72bf02c995a506db5 (patch) | |
tree | dd05968730762f5b18de4c6b0720843669e4e9db /fs/ext4/ext4.h | |
parent | ca0e05e4b15193aeba72b995e90de990db7f8304 (diff) | |
download | op-kernel-dev-8b67f04ab9de5d8f3a71aef72bf02c995a506db5.zip op-kernel-dev-8b67f04ab9de5d8f3a71aef72bf02c995a506db5.tar.gz |
ext4: Add mount options in superblock
Allow mount options to be stored in the superblock. Also add default
mount option bits for nobarrier, block_validity, discard, and nodelalloc.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 9ca3637..ed14e1d 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -1025,8 +1025,9 @@ struct ext4_super_block { __le32 s_last_error_line; /* line number where error happened */ __le64 s_last_error_block; /* block involved of last error */ __u8 s_last_error_func[32]; /* function where the error happened */ -#define EXT4_S_ERR_END offsetof(struct ext4_super_block, s_reserved) - __le32 s_reserved[128]; /* Padding to the end of the block */ +#define EXT4_S_ERR_END offsetof(struct ext4_super_block, s_mount_opts) + __u8 s_mount_opts[64]; + __le32 s_reserved[112]; /* Padding to the end of the block */ }; #define EXT4_S_ERR_LEN (EXT4_S_ERR_END - EXT4_S_ERR_START) @@ -1341,6 +1342,10 @@ EXT4_INODE_BIT_FNS(state, state_flags) #define EXT4_DEFM_JMODE_DATA 0x0020 #define EXT4_DEFM_JMODE_ORDERED 0x0040 #define EXT4_DEFM_JMODE_WBACK 0x0060 +#define EXT4_DEFM_NOBARRIER 0x0100 +#define EXT4_DEFM_BLOCK_VALIDITY 0x0200 +#define EXT4_DEFM_DISCARD 0x0400 +#define EXT4_DEFM_NODELALLOC 0x0800 /* * Default journal batch times |