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=-10.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable 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 C2E0BC433B4 for ; Thu, 13 May 2021 07:14:23 +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 0BE7A613C4 for ; Thu, 13 May 2021 07:14:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0BE7A613C4 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com 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 4FgjZj57qMz2yyF for ; Thu, 13 May 2021 17:14:21 +1000 (AEST) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=huawei.com (client-ip=45.249.212.255; helo=szxga08-in.huawei.com; envelope-from=yuchao0@huawei.com; receiver=) X-Greylist: delayed 1183 seconds by postgrey-1.36 at boromir; Thu, 13 May 2021 17:14:18 AEST Received: from szxga08-in.huawei.com (szxga08-in.huawei.com [45.249.212.255]) (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 4FgjZf187wz2ym7 for ; Thu, 13 May 2021 17:14:14 +1000 (AEST) Received: from dggemx753-chm.china.huawei.com (unknown [172.30.72.53]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4Fgj2p6QW9z19HC1; Thu, 13 May 2021 14:50:10 +0800 (CST) Received: from [10.136.110.154] (10.136.110.154) by dggemx753-chm.china.huawei.com (10.0.44.37) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2; Thu, 13 May 2021 14:54:27 +0800 Subject: Re: [PATCH] erofs: fix 1 lcluster-sized pcluster for big pcluster To: Gao Xiang , References: <20210510064715.29123-1-xiang@kernel.org> From: Chao Yu Message-ID: <06a646a0-8436-2fd7-4c1b-1d5ea86c600e@huawei.com> Date: Thu, 13 May 2021 14:54:26 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20210510064715.29123-1-xiang@kernel.org> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.136.110.154] X-ClientProxiedBy: dggemx704-chm.china.huawei.com (10.1.199.51) To dggemx753-chm.china.huawei.com (10.0.44.37) X-CFilter-Loop: Reflected 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: LKML Errors-To: linux-erofs-bounces+linux-erofs=archiver.kernel.org@lists.ozlabs.org Sender: "Linux-erofs" On 2021/5/10 14:47, Gao Xiang wrote: > If the 1st NONHEAD lcluster of a pcluster isn't CBLKCNT lcluster type > rather than a HEAD or PLAIN type instead, which means its pclustersize > _must_ be 1 lcluster (since its uncompressed size < 2 lclusters), > as illustrated below: > > HEAD HEAD / PLAIN lcluster type > ____________ ____________ > |_:__________|_________:__| file data (uncompressed) > . . > .____________. > |____________| pcluster data (compressed) > > Such on-disk case was explained before [1] but missed to be handled > properly in the runtime implementation. > > It can be observed if manually generating 1 lcluster-sized pcluster > with 2 lclusters (thus CBLKCNT doesn't exist.) Let's fix it now. > > [1] https://lore.kernel.org/r/20210407043927.10623-1-xiang@kernel.org > Fixes: cec6e93beadf ("erofs: support parsing big pcluster compress indexes") > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,