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 C4661C433EF for ; Wed, 16 Mar 2022 03:29:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1353441AbiCPDa2 (ORCPT ); Tue, 15 Mar 2022 23:30:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35024 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244144AbiCPDa0 (ORCPT ); Tue, 15 Mar 2022 23:30:26 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 62672396BE for ; Tue, 15 Mar 2022 20:29:11 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id CB5C9B81A07 for ; Wed, 16 Mar 2022 03:29:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79CB8C340E8; Wed, 16 Mar 2022 03:29:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1647401348; bh=aIceSeELNkeFGeC2kSc1k8qFifJ8gVB3BT8bdETjyG0=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=p8UCyAH3H6HpPCCfMoenlagaKEaxQ4xINiKDt7oXB0DqySoEvAONKee1o1nW6t9KT +KD/Fxc3c1Ykl9T4zijh0Zaooi4pmboBXFeH8mYS1emOhwjHJTxf39n7rnkkgnJpk9 vobAjtTA4G+EOUSkHkrBcethWMAAYiYEnN+HsJFmhOxSgrWMrzYhaRbUohyOMv331W RTmMV5h6ViAP6mTSwfTpFBlKuGIBWFeOdjmQM14bA2VVQGypUmrxjW+siaKS/wJsnG ZZLRk2+ykXj2Mt9YpzUhAxjkRpBA/zUpAHxhJuiBJao+rV+UKB89hpYv6owsTtA6Qi 5OvexvwoCmzQA== Message-ID: Date: Wed, 16 Mar 2022 11:29:04 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.6.2 Subject: Re: [PATCH 2/2] erofs: support inode lookup with metabuf Content-Language: en-US To: Gao Xiang , linux-erofs@lists.ozlabs.org Cc: LKML References: <20220316012246.95131-1-hsiangkao@linux.alibaba.com> <20220316012246.95131-2-hsiangkao@linux.alibaba.com> From: Chao Yu In-Reply-To: <20220316012246.95131-2-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 2022/3/16 9:22, Gao Xiang wrote: > This converts the remaining inode lookup part by using metabuf in a > straight-forward way. Except that it doesn't use kmap_atomic() > anymore since we now have to maintain two metabuf together. > > After this patch, all uncompressed paths are handled with metabuf > instead of page structure. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,