From: sunshijie Date: Mon, 21 Aug 2023 15:21:16 +0000 (+0800) Subject: erofs: don't warn dedupe and fragments features anymore X-Git-Tag: v6.6.7~2129^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ec693ca70dd88db20094cab9aa045852363b93f;p=platform%2Fkernel%2Flinux-starfive.git erofs: don't warn dedupe and fragments features anymore The `dedupe` and `fragments` features have been merged for a year. They are mostly stable now. Reviewed-by: Gao Xiang Reviewed-by: Chao Yu Signed-off-by: sunshijie Link: https://lore.kernel.org/r/20230821041737.2673401-1-sunshijie@xiaomi.com Signed-off-by: Gao Xiang --- diff --git a/fs/erofs/super.c b/fs/erofs/super.c index 91ed146..44a24d5 100644 --- a/fs/erofs/super.c +++ b/fs/erofs/super.c @@ -418,10 +418,6 @@ static int erofs_read_superblock(struct super_block *sb) if (erofs_is_fscache_mode(sb)) erofs_info(sb, "EXPERIMENTAL fscache-based on-demand read feature in use. Use at your own risk!"); - if (erofs_sb_has_fragments(sbi)) - erofs_info(sb, "EXPERIMENTAL compressed fragments feature in use. Use at your own risk!"); - if (erofs_sb_has_dedupe(sbi)) - erofs_info(sb, "EXPERIMENTAL global deduplication feature in use. Use at your own risk!"); out: erofs_put_metabuf(&buf); return ret;