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 91EEAC77B7A for ; Mon, 29 May 2023 07:42:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231610AbjE2HmH (ORCPT ); Mon, 29 May 2023 03:42:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54600 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231572AbjE2Hlr (ORCPT ); Mon, 29 May 2023 03:41:47 -0400 Received: from out30-99.freemail.mail.aliyun.com (out30-99.freemail.mail.aliyun.com [115.124.30.99]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3B43BE1 for ; Mon, 29 May 2023 00:41:43 -0700 (PDT) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R111e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046049;MF=hsiangkao@linux.alibaba.com;NM=1;PH=DS;RN=6;SR=0;TI=SMTPD_---0Vjis6Cv_1685346099; Received: from 30.221.134.122(mailfrom:hsiangkao@linux.alibaba.com fp:SMTPD_---0Vjis6Cv_1685346099) by smtp.aliyun-inc.com; Mon, 29 May 2023 15:41:40 +0800 Message-ID: <9d928aa7-31cf-e4c1-8694-0aa63e55b382@linux.alibaba.com> Date: Mon, 29 May 2023 15:41:38 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 Subject: Re: [PATCH v3 1/5] erofs: introduce erofs_xattr_iter_fixup_aligned() helper To: Jingbo Xu , xiang@kernel.org, chao@kernel.org, huyue2@coolpad.com, linux-erofs@lists.ozlabs.org Cc: linux-kernel@vger.kernel.org References: <20230518024551.123990-1-jefflexu@linux.alibaba.com> <20230518024551.123990-2-jefflexu@linux.alibaba.com> From: Gao Xiang In-Reply-To: <20230518024551.123990-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 Hi, On 2023/5/18 10:45, Jingbo Xu wrote: > Introduce erofs_xattr_iter_fixup_aligned() helper where > it.ofs <= EROFS_BLKSIZ is mandatory. > > Signed-off-by: Jingbo Xu > --- > fs/erofs/xattr.c | 79 +++++++++++++++++++++--------------------------- > 1 file changed, 35 insertions(+), 44 deletions(-) > > diff --git a/fs/erofs/xattr.c b/fs/erofs/xattr.c > index bbfe7ce170d2..b79be2a556ba 100644 > --- a/fs/erofs/xattr.c > +++ b/fs/erofs/xattr.c > @@ -29,6 +29,28 @@ struct xattr_iter { > unsigned int ofs; > }; > > +static inline int erofs_xattr_iter_fixup(struct xattr_iter *it) > +{ > + if (it->ofs < it->sb->s_blocksize) > + return 0; > + > + it->blkaddr += erofs_blknr(it->sb, it->ofs); > + it->kaddr = erofs_read_metabuf(&it->buf, it->sb, it->blkaddr, EROFS_KMAP); could we use a new buf interface to init_metabuf at once? > + if (IS_ERR(it->kaddr)) > + return PTR_ERR(it->kaddr); > + it->ofs = erofs_blkoff(it->sb, it->ofs); > + return 0; > +} > + > +static inline int erofs_xattr_iter_fixup_aligned(struct xattr_iter *it) Since we're doing cleanup, this name sounds confusing to me since here the meaning is actually "we don't allow pos > blksize", IOWs, any pos <= blksize is allowed here, so 'aligned' is not accurate. Could we think out a better one? Thanks, Gao Xiang