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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 91CEAEE4993 for ; Wed, 23 Aug 2023 15:21:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237108AbjHWPVb (ORCPT ); Wed, 23 Aug 2023 11:21:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43834 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237079AbjHWPVa (ORCPT ); Wed, 23 Aug 2023 11:21:30 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 96A88101 for ; Wed, 23 Aug 2023 08:21:03 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id C54B865BE7 for ; Wed, 23 Aug 2023 15:19:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5B698C433C9; Wed, 23 Aug 2023 15:19:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692803991; bh=uBDCkLnKfifcqL2Bn9zaiIl1ike83ejaqgx7O/VU6sk=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=MIF4DIvCZ2PUVz6JOKztBA3cNJ3uI8b9s3MnjQuFNMJjvUSVkJrk39vOTkzmOw5H3 SIJD9w1KF9XJtW9eI3KJOHGBkgJxVMvBMQhxU77XfN04uIjcbpWH69UMCdZ4sXsFGL B8HDXu5I0iXGf7c1h0VbWjosL9MXXwuaeQDpU9bcWik+va9kCJiBQr/aZqNosOFVxF Hh0Xrg5+HZpwQPRFPKhn9JWR9weL5bJ1mjCrJ6nEDta/TdfDvv2P55k9mcmoeOcizY DOhMkWBxIY0AUL88qwa16JBTBoPTfOKXVMDM+I0nBh2MJVUsvoJzaj5iyxokCDhrCr w9J/W0IDqeNmg== Message-ID: Date: Wed, 23 Aug 2023 23:19:48 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH 6/8] erofs: get rid of fe->backmost for cache decompression Content-Language: en-US To: Gao Xiang , linux-erofs@lists.ozlabs.org Cc: LKML References: <20230817082813.81180-1-hsiangkao@linux.alibaba.com> <20230817082813.81180-6-hsiangkao@linux.alibaba.com> From: Chao Yu In-Reply-To: <20230817082813.81180-6-hsiangkao@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/8/17 16:28, Gao Xiang wrote: > EROFS_MAP_FULL_MAPPED is more accurate to decide if caching the last > incomplete pcluster for later read or not. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,