From: Matthew Wilcox <willy@infradead.org>
To: Muchun Song <songmuchun@bytedance.com>
Cc: viro@zeniv.linux.org.uk, tj@kernel.org, axboe@fb.com,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] writeback: fix obtain a reference to a freeing memcg css
Date: Tue, 30 Mar 2021 12:34:47 +0100 [thread overview]
Message-ID: <20210330113447.GM351017@casper.infradead.org> (raw)
In-Reply-To: <20210330092933.81311-1-songmuchun@bytedance.com>
On Tue, Mar 30, 2021 at 05:29:33PM +0800, Muchun Song wrote:
> +++ b/fs/fs-writeback.c
> @@ -506,8 +506,10 @@ static void inode_switch_wbs(struct inode *inode, int new_wb_id)
> /* find and pin the new wb */
> rcu_read_lock();
> memcg_css = css_from_id(new_wb_id, &memory_cgrp_subsys);
> - if (memcg_css)
> + if (memcg_css && css_tryget(memcg_css)) {
> isw->new_wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC);
> + css_put(memcg_css);
> + }
> rcu_read_unlock();
> if (!isw->new_wb)
> goto out_free;
This seems like an unnecessary use of GFP_ATOMIC. Why not:
rcu_read_lock();
memcg_css = css_from_id(new_wb_id, &memory_cgrp_subsys);
if (memcg_css && !css_tryget(memcg_css))
memcg_css = NULL;
rcu_read_unlock();
if (!memcg_css)
goto out_free;
isw->new_wb = wb_get_create(bdi, memcg_css, GFP_NOIO);
css_put(memcg_css);
if (!isw->new_wb)
goto out_free;
(inode_switch_wbs can't be called in interrupt context because it takes
inode->i_lock, which is not interrupt-safe. it's not clear to me whether
it is allowed to start IO or do FS reclaim, given where it is in the
I/O path, so i went with GFP_NOIO rather than GFP_KERNEL)
(also there's another use of GFP_ATOMIC in that function, which is
probably wrong)
next prev parent reply other threads:[~2021-03-30 11:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-30 9:29 [PATCH] writeback: fix obtain a reference to a freeing memcg css Muchun Song
2021-03-30 11:34 ` Matthew Wilcox [this message]
2021-03-31 12:18 ` [External] " Muchun Song
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=20210330113447.GM351017@casper.infradead.org \
--to=willy@infradead.org \
--cc=axboe@fb.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=songmuchun@bytedance.com \
--cc=tj@kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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).