diff options
author | Vladimir Zapolskiy <vladimir@tuxera.com> | 2020-01-02 15:01:16 +0300 |
---|---|---|
committer | Gao Xiang <gaoxiang25@huawei.com> | 2020-01-07 05:08:38 +0300 |
commit | 997626d8383871862d0774c50a351aa98dacc0eb (patch) | |
tree | 44383fdd7bbe1dfb1efff8686ec5cb48204fbd28 /fs/erofs/zdata.c | |
parent | a55861c800ae0593b7d343470918f6f84063e3b8 (diff) | |
download | linux-997626d8383871862d0774c50a351aa98dacc0eb.tar.xz |
erofs: remove unused tag argument while finding a workgroup
It is feasible to simplify erofs_find_workgroup() interface by removing
an unused function argument. While formally the argument is used in the
function itself, its assigned value is ignored on the caller side.
Signed-off-by: Vladimir Zapolskiy <vladimir@tuxera.com>
Link: https://lore.kernel.org/r/20200102120118.14979-2-vladimir@tuxera.com
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Gao Xiang <gaoxiang25@huawei.com>
Diffstat (limited to 'fs/erofs/zdata.c')
-rw-r--r-- | fs/erofs/zdata.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/erofs/zdata.c b/fs/erofs/zdata.c index ca99425a4536..052d28391ce6 100644 --- a/fs/erofs/zdata.c +++ b/fs/erofs/zdata.c @@ -345,9 +345,8 @@ static int z_erofs_lookup_collection(struct z_erofs_collector *clt, struct z_erofs_pcluster *pcl; struct z_erofs_collection *cl; unsigned int length; - bool tag; - grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT, &tag); + grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT); if (!grp) return -ENOENT; |