From: Tejun Heo <tj@kernel.org>
To: Johannes Weiner <hannes@cmpxchg.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Hugh Dickins <hughd@google.com>, Michal Hocko <mhocko@suse.cz>,
linux-mm@kvack.org, cgroups@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [patch] mm: memcontrol: do not iterate uninitialized memcgs
Date: Wed, 24 Sep 2014 22:57:58 -0400 [thread overview]
Message-ID: <20140925025758.GA6903@mtj.dyndns.org> (raw)
In-Reply-To: <1411612278-4707-1-git-send-email-hannes@cmpxchg.org>
Hello,
On Wed, Sep 24, 2014 at 10:31:18PM -0400, Johannes Weiner wrote:
..
> not meet the ordering requirements for memcg, and so we still may see
> partially initialized memcgs from the iterators.
It's mainly the other way around - a fully initialized css may not
show up in an iteration, but given that there's no memory ordering or
synchronization around the flag, anything can happen.
...
> + if (next_css == &root->css ||
> + css_tryget_online(next_css)) {
> + struct mem_cgroup *memcg;
> +
> + memcg = mem_cgroup_from_css(next_css);
> + if (memcg->initialized) {
> + /*
> + * Make sure the caller's accesses to
> + * the memcg members are issued after
> + * we see this flag set.
I usually prefer if the comment points to the exact location that the
matching memory barriers live. Sometimes it's difficult to locate the
partner barrier even w/ the functional explanation.
> + */
> + smp_rmb();
> + return memcg;
In an unlikely event this rmb becomes an issue, a self-pointing
pointer which is set/read using smp_store_release() and
smp_load_acquire() respectively can do with plain barrier() on the
reader side on archs which don't need data dependency barrier
(basically everything except alpha). Not sure whether that'd be more
or less readable than this tho.
Thanks.
--
tejun
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2014-09-25 2:58 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-25 2:31 [patch] mm: memcontrol: do not iterate uninitialized memcgs Johannes Weiner
2014-09-25 2:40 ` [patch v2] " Johannes Weiner
2014-09-25 11:43 ` Michal Hocko
2014-09-25 13:54 ` Johannes Weiner
2014-09-25 14:11 ` Michal Hocko
2014-09-25 2:57 ` Tejun Heo [this message]
2014-09-25 13:43 ` [patch] " Johannes Weiner
2014-09-25 14:23 ` Michal Hocko
2014-09-26 13:39 ` Peter Zijlstra
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=20140925025758.GA6903@mtj.dyndns.org \
--to=tj@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=cgroups@vger.kernel.org \
--cc=hannes@cmpxchg.org \
--cc=hughd@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.cz \
/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).