mirror of https://gitee.com/openkylin/linux.git
f2fs: remove unused parameter of f2fs_put_rpages_mapping()
Just cleanup, no logic change. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
8626441f05
commit
bc67c5d0ce
|
@ -89,8 +89,7 @@ static void f2fs_unlock_rpages(struct compress_ctx *cc, int len)
|
|||
f2fs_drop_rpages(cc, len, true);
|
||||
}
|
||||
|
||||
static void f2fs_put_rpages_mapping(struct compress_ctx *cc,
|
||||
struct address_space *mapping,
|
||||
static void f2fs_put_rpages_mapping(struct address_space *mapping,
|
||||
pgoff_t start, int len)
|
||||
{
|
||||
int i;
|
||||
|
@ -942,7 +941,7 @@ static int prepare_compress_overwrite(struct compress_ctx *cc,
|
|||
|
||||
if (!PageUptodate(page)) {
|
||||
f2fs_unlock_rpages(cc, i + 1);
|
||||
f2fs_put_rpages_mapping(cc, mapping, start_idx,
|
||||
f2fs_put_rpages_mapping(mapping, start_idx,
|
||||
cc->cluster_size);
|
||||
f2fs_destroy_compress_ctx(cc);
|
||||
goto retry;
|
||||
|
@ -977,7 +976,7 @@ static int prepare_compress_overwrite(struct compress_ctx *cc,
|
|||
unlock_pages:
|
||||
f2fs_unlock_rpages(cc, i);
|
||||
release_pages:
|
||||
f2fs_put_rpages_mapping(cc, mapping, start_idx, i);
|
||||
f2fs_put_rpages_mapping(mapping, start_idx, i);
|
||||
f2fs_destroy_compress_ctx(cc);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue