Commit e72ebd73 authored by Mikael Pettersson's avatar Mikael Pettersson Committed by Christoph Hellwig

[PATCH] typo in fs_ufs_super.c:ufs_fill_super()

Obvious typo: checking block size but printing fragment size.
parent 8ca9b519
......@@ -673,7 +673,7 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent)
}
if (uspi->s_bsize < 4096) {
printk("ufs_read_super: block size %u is too small\n",
uspi->s_fsize);
uspi->s_bsize);
goto failed;
}
if (uspi->s_bsize / uspi->s_fsize > 8) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment