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 CC105C77B61 for ; Sun, 16 Apr 2023 14:21:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230359AbjDPOVd (ORCPT ); Sun, 16 Apr 2023 10:21:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41042 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230382AbjDPOVa (ORCPT ); Sun, 16 Apr 2023 10: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 27B3B2D5B for ; Sun, 16 Apr 2023 07:21:29 -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 dfw.source.kernel.org (Postfix) with ESMTPS id B362D60DD3 for ; Sun, 16 Apr 2023 14:21:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0617BC433EF; Sun, 16 Apr 2023 14:21:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681654888; bh=jArUrVjOBK3lecBeZm/2KhzUx8jOfQnvVXBNfardV48=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=GSC3RuE9wJQvxtZle+yhURnJRPTgo6vh1k1vhrLrTha/GeFkeixqXJkKDJ5b9sk+0 Hz5fY+dpTcCXz4YosO9qAICOgtm7RXskrcMEDJq/fUAvlRqjhJ1xb38+G4Qt3EChX7 Lue69w0bc5lo15wrI48kRI7tRnEsO1BHjpWHyLkhkqEEsjik4qREnwx66UrhPqUc9/ Cl0tUPvcO4QUNQB5v6nz4yn7BahjzO0SwI61qQGxDqN46726X/elLVF/CZSvNjo31T 5Y98HWmv4YxuPUraoP4SQazqI2g+HawaKlKZATJBB8ZYAdGQJz5S+mjFtSjpDZaedP hPRGVZG8IYaIQ== Message-ID: <74b059d9-413a-7807-9c3b-b8cc119186b9@kernel.org> Date: Sun, 16 Apr 2023 22:21:26 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [PATCH v2 1/8] erofs: move several xattr helpers into xattr.c Content-Language: en-US To: Jingbo Xu , xiang@kernel.org, huyue2@coolpad.com, linux-erofs@lists.ozlabs.org Cc: linux-kernel@vger.kernel.org References: <20230330082910.125374-1-jefflexu@linux.alibaba.com> <20230330082910.125374-2-jefflexu@linux.alibaba.com> From: Chao Yu In-Reply-To: <20230330082910.125374-2-jefflexu@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/3/30 16:29, Jingbo Xu wrote: > Move xattrblock_addr() and xattrblock_offset() helpers into xattr.c, > as they are not used outside of xattr.c. > > inlinexattr_header_size() has only one caller, and thus make it inlined > into the caller directly. > > Signed-off-by: Jingbo Xu Acked-by: Chao Yu Thanks,