summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorLi Zefan2008-07-12 01:27:31 +0200
committerTheodore Ts'o2008-07-12 01:27:31 +0200
commitf9a8ac99fd79eb961a8573ccf058439bc17b4d3a (patch)
tree9fadb826277793f1bfb155b031da8fd8c4fbde08 /fs/ext4
parentjbd2: fix race between jbd2_journal_try_to_free_buffers() and jbd2 commit tra... (diff)
downloadkernel-qcow2-linux-f9a8ac99fd79eb961a8573ccf058439bc17b4d3a.tar.gz
kernel-qcow2-linux-f9a8ac99fd79eb961a8573ccf058439bc17b4d3a.tar.xz
kernel-qcow2-linux-f9a8ac99fd79eb961a8573ccf058439bc17b4d3a.zip
ext4: remove redundant code in ext4_fill_super()
The previous sb_min_blocksize() has already set the block size. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Signed-off-by: Mingming Cao <cmm@us.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/super.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index b9ad3d852061..6c80f37433ef 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1899,11 +1899,6 @@ static int ext4_fill_super (struct super_block *sb, void *data, int silent)
goto out_fail;
}
- if (!sb_set_blocksize(sb, blocksize)) {
- printk(KERN_ERR "EXT4-fs: bad blocksize %d.\n", blocksize);
- goto out_fail;
- }
-
/*
* The ext4 superblock will not be buffer aligned for other than 1kB
* block sizes. We need to calculate the offset from buffer start.