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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 0D015C4332F for ; Mon, 30 Oct 2023 15:03:52 +0000 (UTC) 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=dqXyfFex; dkim-atps=neutral Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4SJxP34lDVz3cRZ for ; Tue, 31 Oct 2023 02:03:51 +1100 (AEDT) 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=dqXyfFex; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=kernel.org (client-ip=139.178.84.217; helo=dfw.source.kernel.org; envelope-from=chao@kernel.org; receiver=lists.ozlabs.org) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 lists.ozlabs.org (Postfix) with ESMTPS id 4SJxNy6nkMz3bwj for ; Tue, 31 Oct 2023 02:03:46 +1100 (AEDT) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 03AC1602E4; Mon, 30 Oct 2023 15:03:45 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 109FFC433C9; Mon, 30 Oct 2023 15:03:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1698678224; bh=/e6WeDGwbz91KGCx8dhoEfJpZYov52rFu9fCRmp3ib4=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=dqXyfFex6wMM2LHMiBfmkII0cvESFJLAVuUBiAEXyZ4UjfVPDOE+JklAcPytp+hPJ aEVaROX3XQyIiIchGyXXhiWgRX2aFxNzkGB52Y0tNyrATvTeWVZVv6p0WfH3mimK05 oiiDAPqAdD+B6z289BSBbhWAWgd+W/x19NrCkazOJtUSxMY4E+NEdcVzyO3odjSJDF ez6AK4bwFm4XPhYBTLXPWwjYAbdtBssnPivAef95mpRZYcib+OOdACnedIatxQHmic saRG2yTBvDSkq0FuwqA/xgZ9rnPg7G7f63ryZxOal6tzKndilyh4W9fzVbt4b6VAsq eYNRUZ1ddGEbg== Message-ID: <45595f8b-eaf7-85ba-ed13-54197b08edb6@kernel.org> Date: Mon, 30 Oct 2023 23:03:41 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.15.1 Subject: Re: [PATCH 1/2] erofs: get rid of ROOT_NID() Content-Language: en-US To: Ferry Meng , linux-erofs@lists.ozlabs.org References: <20231026021627.23284-1-mengferry@linux.alibaba.com> From: Chao Yu In-Reply-To: <20231026021627.23284-1-mengferry@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 2023/10/26 10:16, Ferry Meng wrote: > Let's open code this helper for simplicity. > > Signed-off-by: Ferry Meng Reviewed-by: Chao Yu