From: Eric Biggers <ebiggers@kernel.org>
To: Chao Yu <yuchao0@huawei.com>
Cc: linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [f2fs-dev] [PATCH v2] f2fs: don't return vmalloc() memory from f2fs_kmalloc()
Date: Mon, 8 Jun 2020 19:11:21 -0700 [thread overview]
Message-ID: <20200609021121.GA43422@gmail.com> (raw)
In-Reply-To: <57c9bfa7-9b15-64e5-8b33-eb9829399f87@huawei.com>
On Tue, Jun 09, 2020 at 09:36:50AM +0800, Chao Yu wrote:
> On 2020/6/5 12:57, Eric Biggers wrote:
> > From: Eric Biggers <ebiggers@google.com>
> >
> > kmalloc() returns kmalloc'ed memory, and kvmalloc() returns either
> > kmalloc'ed or vmalloc'ed memory. But the f2fs wrappers, f2fs_kmalloc()
> > and f2fs_kvmalloc(), both return both kinds of memory.
> >
> > It's redundant to have two functions that do the same thing, and also
> > breaking the standard naming convention is causing bugs since people
> > assume it's safe to kfree() memory allocated by f2fs_kmalloc(). See
> > e.g. the various allocations in fs/f2fs/compress.c.
> >
> > Fix this by making f2fs_kmalloc() just use kmalloc(). And to avoid
> > re-introducing the allocation failures that the vmalloc fallback was
> > intended to fix, convert the largest allocations to use f2fs_kvmalloc().
> >
> > Signed-off-by: Eric Biggers <ebiggers@google.com>
> > ---
> >
> > v2: also use f2fs_kvzalloc() in init_blkz_info()
> >
> > fs/f2fs/checkpoint.c | 4 ++--
> > fs/f2fs/f2fs.h | 8 +-------
> > fs/f2fs/node.c | 8 ++++----
> > fs/f2fs/super.c | 2 +-
> > 4 files changed, 8 insertions(+), 14 deletions(-)
> >
> > diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
> > index 3dc3ac6fe14324..23606493025165 100644
> > --- a/fs/f2fs/checkpoint.c
> > +++ b/fs/f2fs/checkpoint.c
> > @@ -895,8 +895,8 @@ int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi)
> > int i;
> > int err;
> >
> > - sbi->ckpt = f2fs_kzalloc(sbi, array_size(blk_size, cp_blks),
> > - GFP_KERNEL);
> > + sbi->ckpt = f2fs_kvzalloc(sbi, array_size(blk_size, cp_blks),
> > + GFP_KERNEL);
> > if (!sbi->ckpt)
> > return -ENOMEM;
> > /*
> > diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> > index 50e6cdf20b7331..c812fb8e2d9c7a 100644
> > --- a/fs/f2fs/f2fs.h
> > +++ b/fs/f2fs/f2fs.h
> > @@ -2998,18 +2998,12 @@ static inline bool f2fs_may_extent_tree(struct inode *inode)
> > static inline void *f2fs_kmalloc(struct f2fs_sb_info *sbi,
> > size_t size, gfp_t flags)
> > {
> > - void *ret;
> > -
> > if (time_to_inject(sbi, FAULT_KMALLOC)) {
> > f2fs_show_injection_info(sbi, FAULT_KMALLOC);
> > return NULL;
> > }
> >
> > - ret = kmalloc(size, flags);
> > - if (ret)
> > - return ret;
> > -
> > - return kvmalloc(size, flags);
> > + return kmalloc(size, flags);
>
> Then could we revert to use kfree instead of kvfree if memory was allocated
> from f2fs_kmalloc()? though there is actual problem w/o reverting.
>
Yes, I think we should prefer kfree() when the memory was allocated with
f2fs_kmalloc(). It's not critical though, since kvfree() works on kmalloc'ed
memory. So it should be a separate patch later.
- Eric
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
next prev parent reply other threads:[~2020-06-09 2:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-05 4:57 [f2fs-dev] [PATCH v2] f2fs: don't return vmalloc() memory from f2fs_kmalloc() Eric Biggers
2020-06-05 5:03 ` Jaegeuk Kim
2020-06-09 1:36 ` Chao Yu
2020-06-09 2:11 ` Eric Biggers [this message]
2020-06-09 2:20 ` Chao Yu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200609021121.GA43422@gmail.com \
--to=ebiggers@kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=yuchao0@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).