diff options
author | Kemeng Shi <shikemeng@huaweicloud.com> | 2023-02-21 23:30:27 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2023-03-24 06:00:08 +0300 |
commit | 1df9bde48fc6e8efe520f4d89ff35769b2c56b8b (patch) | |
tree | 5a7c067a405517819f002bc6dc9db6db81ffebb9 /fs/ext4/bitmap.c | |
parent | 82483dfe17d036146f708809b33845c8aaf029b5 (diff) | |
download | linux-1df9bde48fc6e8efe520f4d89ff35769b2c56b8b.tar.xz |
ext4: remove unused group parameter in ext4_block_bitmap_csum_set
Remove unused group parameter in ext4_block_bitmap_csum_set. After this,
group parameter in ext4_set_bitmap_checksums is also not used, just
remove it too.
Signed-off-by: Kemeng Shi <shikemeng@huaweicloud.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230221203027.2359920-5-shikemeng@huaweicloud.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/bitmap.c')
-rw-r--r-- | fs/ext4/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/bitmap.c b/fs/ext4/bitmap.c index 3b83d979a650..87c1c8ae9298 100644 --- a/fs/ext4/bitmap.c +++ b/fs/ext4/bitmap.c @@ -80,7 +80,7 @@ int ext4_block_bitmap_csum_verify(struct super_block *sb, return 0; } -void ext4_block_bitmap_csum_set(struct super_block *sb, ext4_group_t group, +void ext4_block_bitmap_csum_set(struct super_block *sb, struct ext4_group_desc *gdp, struct buffer_head *bh) { |