erofs: use kill_anon_super() to kill super in fscache mode

[ Upstream commit 1015c1016c ]

Use kill_anon_super() instead of generic_shutdown_super() since the
mount() in erofs fscache mode uses get_tree_nodev() and associated
anon bdev needs to be freed.

Fixes: 9c0cc9c729 ("erofs: add 'fsid' mount option")
Suggested-by: Jingbo Xu <jefflexu@linux.alibaba.com>
Signed-off-by: Jia Zhu <zhujia.zj@bytedance.com>
Reviewed-by: Jingbo Xu <jefflexu@linux.alibaba.com>
Link: https://lore.kernel.org/r/20220918043456.147-2-zhujia.zj@bytedance.com
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Jia Zhu 2022-09-18 12:34:51 +08:00 committed by Greg Kroah-Hartman
parent b6c8330f5b
commit f27bafeb9f
1 changed files with 1 additions and 1 deletions

View File

@ -877,7 +877,7 @@ static void erofs_kill_sb(struct super_block *sb)
WARN_ON(sb->s_magic != EROFS_SUPER_MAGIC);
if (erofs_is_fscache_mode(sb))
generic_shutdown_super(sb);
kill_anon_super(sb);
else
kill_block_super(sb);