diff options
-rw-r--r-- | fs/ext4/inode.c | 6 | ||||
-rw-r--r-- | include/linux/ext4_fs.h | 14 |
2 files changed, 11 insertions, 9 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 1685f6a8778..89dd87634a2 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -3233,12 +3233,14 @@ int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) | |||
3233 | iloc, handle); | 3233 | iloc, handle); |
3234 | if (ret) { | 3234 | if (ret) { |
3235 | EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND; | 3235 | EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND; |
3236 | if (mnt_count != sbi->s_es->s_mnt_count) { | 3236 | if (mnt_count != |
3237 | le16_to_cpu(sbi->s_es->s_mnt_count)) { | ||
3237 | ext4_warning(inode->i_sb, __FUNCTION__, | 3238 | ext4_warning(inode->i_sb, __FUNCTION__, |
3238 | "Unable to expand inode %lu. Delete" | 3239 | "Unable to expand inode %lu. Delete" |
3239 | " some EAs or run e2fsck.", | 3240 | " some EAs or run e2fsck.", |
3240 | inode->i_ino); | 3241 | inode->i_ino); |
3241 | mnt_count = sbi->s_es->s_mnt_count; | 3242 | mnt_count = |
3243 | le16_to_cpu(sbi->s_es->s_mnt_count); | ||
3242 | } | 3244 | } |
3243 | } | 3245 | } |
3244 | } | 3246 | } |
diff --git a/include/linux/ext4_fs.h b/include/linux/ext4_fs.h index b77b59fe7f5..722d4ef12bf 100644 --- a/include/linux/ext4_fs.h +++ b/include/linux/ext4_fs.h | |||
@@ -574,13 +574,13 @@ struct ext4_super_block { | |||
574 | /*150*/ __le32 s_blocks_count_hi; /* Blocks count */ | 574 | /*150*/ __le32 s_blocks_count_hi; /* Blocks count */ |
575 | __le32 s_r_blocks_count_hi; /* Reserved blocks count */ | 575 | __le32 s_r_blocks_count_hi; /* Reserved blocks count */ |
576 | __le32 s_free_blocks_count_hi; /* Free blocks count */ | 576 | __le32 s_free_blocks_count_hi; /* Free blocks count */ |
577 | __u16 s_min_extra_isize; /* All inodes have at least # bytes */ | 577 | __le16 s_min_extra_isize; /* All inodes have at least # bytes */ |
578 | __u16 s_want_extra_isize; /* New inodes should reserve # bytes */ | 578 | __le16 s_want_extra_isize; /* New inodes should reserve # bytes */ |
579 | __u32 s_flags; /* Miscellaneous flags */ | 579 | __le32 s_flags; /* Miscellaneous flags */ |
580 | __u16 s_raid_stride; /* RAID stride */ | 580 | __le16 s_raid_stride; /* RAID stride */ |
581 | __u16 s_mmp_interval; /* # seconds to wait in MMP checking */ | 581 | __le16 s_mmp_interval; /* # seconds to wait in MMP checking */ |
582 | __u64 s_mmp_block; /* Block for multi-mount protection */ | 582 | __le64 s_mmp_block; /* Block for multi-mount protection */ |
583 | __u32 s_raid_stripe_width; /* blocks on all data disks (N*stride)*/ | 583 | __le32 s_raid_stripe_width; /* blocks on all data disks (N*stride)*/ |
584 | __u32 s_reserved[163]; /* Padding to the end of the block */ | 584 | __u32 s_reserved[163]; /* Padding to the end of the block */ |
585 | }; | 585 | }; |
586 | 586 | ||