提交 a8e3eff4 编写于 作者: N Nick Piggin 提交者: Linus Torvalds

ext2: xip check fix

ext2 should not worry about checking sb->s_blocksize for XIP before the
sb's blocksize actually gets set.
Signed-off-by: NNick Piggin <npiggin@suse.de>
Acked-by: NCarsten Otte <cotte@de.ibm.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 cce992bc
...@@ -868,8 +868,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) ...@@ -868,8 +868,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size); blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
if ((ext2_use_xip(sb)) && ((blocksize != PAGE_SIZE) || if (ext2_use_xip(sb) && blocksize != PAGE_SIZE) {
(sb->s_blocksize != blocksize))) {
if (!silent) if (!silent)
printk("XIP: Unsupported blocksize\n"); printk("XIP: Unsupported blocksize\n");
goto failed_mount; goto failed_mount;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册