[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHB1NaigQx0HW3Oxd2P9uujGk221WjxeKOgaNj-p2WqMJaQZiA@mail.gmail.com>
Date: Fri, 28 Feb 2025 17:30:06 +0800
From: Julian Sun <sunjunchao2870@...il.com>
To: Baokun Li <libaokun1@...wei.com>
Cc: linux-ext4@...r.kernel.org, tytso@....edu, adilger.kernel@...ger.ca,
jack@...e.cz, Yang Erkun <yangerkun@...wei.com>
Subject: Re: [PATCH] ext4: remove unnecessary checks for __GFP_NOFAIL allocation.
Hi, Baokun.
Thanks for your review and comments.
On Fri, Feb 28, 2025 at 4:44 PM Baokun Li <libaokun1@...wei.com> wrote:
>
> On 2025/2/28 16:11, Julian Sun wrote:
> > The __GFP_NOFAIL flag ensures that allocation will not fail.
> > So remove the unnecessary checks.
> Actually, even with __GFP_NOFAIL set, kcalloc() can still return NULL,
> such as when the input parameters overflow.
>
Yeah, agreed. But IMO an overflow shouldn’t happen in this situation.
If there's something I'm missing, please let me know.
>
> Baokun
> >
> > Signed-off-by: Julian Sun <sunjunchao2870@...il.com>
> > ---
> > fs/ext4/extents.c | 4 ----
> > 1 file changed, 4 deletions(-)
> >
> > diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
> > index a07a98a4b97a..95debd5d6506 100644
> > --- a/fs/ext4/extents.c
> > +++ b/fs/ext4/extents.c
> > @@ -2940,10 +2940,6 @@ int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
> > } else {
> > path = kcalloc(depth + 1, sizeof(struct ext4_ext_path),
> > GFP_NOFS | __GFP_NOFAIL);
> > - if (path == NULL) {
> > - ext4_journal_stop(handle);
> > - return -ENOMEM;
> > - }
> > path[0].p_maxdepth = path[0].p_depth = depth;
> > path[0].p_hdr = ext_inode_hdr(inode);
> > i = 0;
>
>
Thanks,
--
Julian Sun <sunjunchao2870@...il.com>
Powered by blists - more mailing lists