提交 85d21650 编写于 作者: S Santosh Nayak 提交者: Theodore Ts'o

ext4: Fix endianness bug when reading the MMP block

Sparse complained about this endian bug in fs/ext4/mmp.c.
Signed-off-by: NSantosh Nayak <santoshprasadnayak@gmail.com>
Reviewed-by: NJohann Lombardi <johann@whamcloud.com>
Reviewed-by: NAndreas Dilger <adilger@dilger.ca>
Signed-off-by: N"Theodore Ts'o" <tytso@mit.edu>
上级 9ee49302
...@@ -257,8 +257,8 @@ int ext4_multi_mount_protect(struct super_block *sb, ...@@ -257,8 +257,8 @@ int ext4_multi_mount_protect(struct super_block *sb,
* If check_interval in MMP block is larger, use that instead of * If check_interval in MMP block is larger, use that instead of
* update_interval from the superblock. * update_interval from the superblock.
*/ */
if (mmp->mmp_check_interval > mmp_check_interval) if (le16_to_cpu(mmp->mmp_check_interval) > mmp_check_interval)
mmp_check_interval = mmp->mmp_check_interval; mmp_check_interval = le16_to_cpu(mmp->mmp_check_interval);
seq = le32_to_cpu(mmp->mmp_seq); seq = le32_to_cpu(mmp->mmp_seq);
if (seq == EXT4_MMP_SEQ_CLEAN) if (seq == EXT4_MMP_SEQ_CLEAN)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册