From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 11CA1C433ED for ; Wed, 28 Apr 2021 04:04:01 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A58E261078 for ; Wed, 28 Apr 2021 04:04:00 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A58E261078 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linux-erofs-bounces+linux-erofs=archiver.kernel.org@lists.ozlabs.org Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4FVQ3z343Hz2ym4 for ; Wed, 28 Apr 2021 14:03:59 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=WtXAYBZd; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=kernel.org (client-ip=198.145.29.99; helo=mail.kernel.org; envelope-from=xiang@kernel.org; receiver=) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=WtXAYBZd; dkim-atps=neutral Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4FVQ3w3JKvz2yx9 for ; Wed, 28 Apr 2021 14:03:55 +1000 (AEST) Received: by mail.kernel.org (Postfix) with ESMTPSA id 75265613F9; Wed, 28 Apr 2021 04:03:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1619582634; bh=Hiptm4aYTdiQEZXis1/XdouCn7EVs1t6ziX6CDTNHrA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WtXAYBZdTOSCtf2Dr/l2yFplc4k3g5htGWw0yvVdXdDrCv93QjjTAW0E/AEKDJ6JH mJirU6v1bnxMyKiald6gjzm+NolJWMUzZbmWyKn1p6+wCpwfb+vsmxoSg1Tmugj2QV BmQ+L8Y+9yu6OIguKZCVgptHMYRWrVMJgjEA2WrZBbu7IyQFKArITDFP2Hc4BfePrJ wZN0ZVsklHhTcUjlqkpiTMmQRjjnEA4d4MQiM7qvVZAIfc1dMKNcR4y7dmWfppc3n5 Xo/nur5DV0hM7ptefP6/2bd6hlBGu6IsV9RRdH9R8s3JnVCjOu/GxzV302xicglfhs Eu89PF496QzRA== From: Gao Xiang To: linux-erofs@lists.ozlabs.org, Li Guifu Subject: [PATCH v3 3/5] erofs-utils: manpage: add missing -C option for big pcluster Date: Wed, 28 Apr 2021 12:03:43 +0800 Message-Id: <20210428040345.4047-3-xiang@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210428040345.4047-1-xiang@kernel.org> References: <20210428040345.4047-1-xiang@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: linux-erofs@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Linux EROFS file system List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Gao Xiang Errors-To: linux-erofs-bounces+linux-erofs=archiver.kernel.org@lists.ozlabs.org Sender: "Linux-erofs" Update the manpage as well. Signed-off-by: Gao Xiang --- man/mkfs.erofs.1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/man/mkfs.erofs.1 b/man/mkfs.erofs.1 index 2520b6a08974..4f2e43565799 100644 --- a/man/mkfs.erofs.1 +++ b/man/mkfs.erofs.1 @@ -24,6 +24,10 @@ from \fISOURCE\fR directory. Set an algorithm for file compression, which can be set with an optional compression level separated by a comma. .TP +.BI "\-C " max-pcluster-size +Specify the maximum size of compress physical cluster in bytes. It may enable +big pcluster feature if needed (Linux v5.13+). +.TP .BI "\-d " # Specify the level of debugging messages. The default is 2, which shows basic warning messages. -- 2.20.1