diff options
author | Akira Fujita <a-fujita@rs.jp.nec.com> | 2012-05-28 14:19:25 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-05-28 14:19:25 -0400 |
commit | 9d99012ff26380a09092a9fddbb6e5f996dc631f (patch) | |
tree | 8feeb9279c718d176fd7cb54594e5226da099fda /fs/ext4/mballoc.c | |
parent | 7e84b6216467b84cd332c8e567bf5aa113fd2f38 (diff) | |
download | linux-3.10-9d99012ff26380a09092a9fddbb6e5f996dc631f.tar.gz linux-3.10-9d99012ff26380a09092a9fddbb6e5f996dc631f.tar.bz2 linux-3.10-9d99012ff26380a09092a9fddbb6e5f996dc631f.zip |
ext4: remove needs_recovery in ext4_mb_init()
needs_recovery in ext4_mb_init() is not used, remove it.
Signed-off-by: Akira Fujita <a-fujita@rs.jp.ne.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/mballoc.c')
-rw-r--r-- | fs/ext4/mballoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index ccb9c2f527d..45cb31e8dd2 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -2375,7 +2375,7 @@ static int ext4_groupinfo_create_slab(size_t size) return 0; } -int ext4_mb_init(struct super_block *sb, int needs_recovery) +int ext4_mb_init(struct super_block *sb) { struct ext4_sb_info *sbi = EXT4_SB(sb); unsigned i, j; |