Commit 825ab03e authored by Christoph Hellwig's avatar Christoph Hellwig

sysvfs: V7 uses 512 byte blocks, not 1Kb.

parent 30d58500
...@@ -454,7 +454,7 @@ static int v7_fill_super(struct super_block *sb, void *data, int silent) ...@@ -454,7 +454,7 @@ static int v7_fill_super(struct super_block *sb, void *data, int silent)
sbi->s_bytesex = BYTESEX_PDP; sbi->s_bytesex = BYTESEX_PDP;
sb->u.generic_sbp = sbi; sb->u.generic_sbp = sbi;
sb_set_blocksize(sb, BLOCK_SIZE); sb_set_blocksize(sb, 512);
if ((bh = sb_bread(sb, 1)) == NULL) { if ((bh = sb_bread(sb, 1)) == NULL) {
if (!silent) if (!silent)
......
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