diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2006-01-08 04:03:39 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 23:13:59 -0500 |
commit | e78c9a004aadebe22306c81d1a7f1d1278dc37f9 (patch) | |
tree | abbe82c7f8ce8d3059619c7941de14e585859aa4 /fs | |
parent | 90f2447d08a5fbddc8b58f8a6425b0513807f919 (diff) |
[PATCH] fs: remove s_old_blocksize from struct super_block
This patch inlines the single user of struct super_block field
s_old_blocksize and removes the field.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/super.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/super.c b/fs/super.c index 5a347a4f673a..0a30e51692cf 100644 --- a/fs/super.c +++ b/fs/super.c | |||
@@ -700,8 +700,7 @@ struct super_block *get_sb_bdev(struct file_system_type *fs_type, | |||
700 | 700 | ||
701 | s->s_flags = flags; | 701 | s->s_flags = flags; |
702 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); | 702 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); |
703 | s->s_old_blocksize = block_size(bdev); | 703 | sb_set_blocksize(s, block_size(bdev)); |
704 | sb_set_blocksize(s, s->s_old_blocksize); | ||
705 | error = fill_super(s, data, flags & MS_VERBOSE ? 1 : 0); | 704 | error = fill_super(s, data, flags & MS_VERBOSE ? 1 : 0); |
706 | if (error) { | 705 | if (error) { |
707 | up_write(&s->s_umount); | 706 | up_write(&s->s_umount); |