erofs-utils: mkfs: don't warn dedupe and fragments features anymore
authorGao Xiang <hsiangkao@linux.alibaba.com>
Tue, 5 Sep 2023 04:38:40 +0000 (12:38 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Tue, 5 Sep 2023 05:14:06 +0000 (13:14 +0800)
Keep in sync with kernel commit 5ec693ca70dd ("erofs: don't warn
dedupe and fragments features anymore").

Except that erofs.mkfs is still single-threaded as a limitation for
backup use cases.

Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20230905043840.61616-1-hsiangkao@linux.alibaba.com
mkfs/main.c

index 4352e62513d255ad061430460c42ae1e3be05434..607c883a6261ebd03087a3e00bab11b156a3db44 100644 (file)
@@ -843,10 +843,7 @@ int main(int argc, char **argv)
                        erofs_err("failed to initialize fragments");
                        return 1;
                }
-               erofs_warn("EXPERIMENTAL compressed fragments feature in use. Use at your own risk!");
        }
-       if (cfg.c_dedupe)
-               erofs_warn("EXPERIMENTAL data deduplication feature in use. Use at your own risk!");
 
 #ifndef NDEBUG
        if (cfg.c_random_pclusterblks)