From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Oleg Nesterov <oleg@redhat.com>,
Kautuk Consul <consul.kautuk@gmail.com>,
Ingo Molnar <mingo@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
Michal Hocko <mhocko@suse.cz>,
David Rientjes <rientjes@google.com>,
Ionut Alexa <ionut.m.alexa@gmail.com>,
Guillaume Morin <guillaume@morinfr.org>,
linux-kernel@vger.kernel.org, Kirill Tkhai <tkhai@yandex.ru>
Subject: Re: [PATCH 1/1] do_exit(): Solve possibility of BUG() due to race with try_to_wake_up()
Date: Thu, 4 Sep 2014 10:03:08 -0700 [thread overview]
Message-ID: <20140904170308.GH5001@linux.vnet.ibm.com> (raw)
In-Reply-To: <20140904071526.GI3190@worktop.ger.corp.intel.com>
On Thu, Sep 04, 2014 at 09:15:26AM +0200, Peter Zijlstra wrote:
> On Wed, Sep 03, 2014 at 05:18:48PM +0200, Oleg Nesterov wrote:
> > On 09/03, Peter Zijlstra wrote:
> > >
> > > On Wed, Sep 03, 2014 at 03:36:40PM +0200, Oleg Nesterov wrote:
> > > >
> > > > // Ensure that the previous __set_current_state(RUNNING) can't
> > > > // leak after spin_unlock_wait()
> > > > smp_mb();
> > > > spin_unlock_wait();
> > > > // Another mb to ensure this too can't be reordered with unlock_wait
> > > > set_current_state(TASK_DEAD);
> > > >
> > > > What do you think looks better?
> > >
> > > spin_unlock_wait() would be a control dependency right? Therefore that
> > > store could not creep up anyhow.
> >
> > Hmm. indeed, thanks! This probably means that task_work_run() can use
> > rmb() instead of mb().
> >
> > What I can't understand is do we still need a compiler barrier or not.
> > Probably "in theory yes" ?
>
> Yes, this is where I'm forever in doubt as well. The worry is the
> compiler reordering things, but I'm not sure how it would do that in
> this case, then again, I've been shown to not be creative enough in
> these cases many times before.
>
> Paul might know, he's had much more exposure to compiler people.
Well, if we are talking about the code sequence above, spin_unlock_wait()
does reads followed by a conditional. And set_current_state() does
a write. The one thing that might be missing is that for this to work is
that Alpha might need an ACCESS_ONCE() to avoid read reordering.
(Yes, ACCESS_ONCE() is required for the other architectures to meet
the letter of the law in memory-barriers.txt, but if you know that
your particular architecture and compiler won't mess you up, you
have more freedom in your arch-specific code.)
Thanx, Paul
next prev parent reply other threads:[~2014-09-04 17:03 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-25 10:54 [PATCH 1/1] do_exit(): Solve possibility of BUG() due to race with try_to_wake_up() Kautuk Consul
2014-08-25 15:57 ` Oleg Nesterov
2014-08-26 4:45 ` Kautuk Consul
2014-08-26 15:03 ` Oleg Nesterov
2014-09-01 15:39 ` Peter Zijlstra
2014-09-01 17:58 ` Oleg Nesterov
2014-09-01 19:09 ` Peter Zijlstra
2014-09-02 15:52 ` Oleg Nesterov
2014-09-02 16:47 ` Oleg Nesterov
2014-09-02 17:39 ` Peter Zijlstra
2014-09-03 13:36 ` Oleg Nesterov
2014-09-03 14:44 ` Peter Zijlstra
2014-09-03 15:18 ` Oleg Nesterov
2014-09-04 7:15 ` Peter Zijlstra
2014-09-04 17:03 ` Paul E. McKenney [this message]
2014-09-04 5:04 ` Ingo Molnar
2014-09-04 6:32 ` Peter Zijlstra
2014-09-03 16:08 ` task_numa_fault() && TASK_DEAD Oleg Nesterov
2014-09-03 16:33 ` Rik van Riel
2014-09-04 7:11 ` Peter Zijlstra
2014-09-04 10:39 ` Oleg Nesterov
2014-09-04 19:14 ` Hugh Dickins
2014-09-05 11:35 ` Oleg Nesterov
2014-09-03 9:04 ` [PATCH 1/1] do_exit(): Solve possibility of BUG() due to race with try_to_wake_up() Kirill Tkhai
2014-09-03 9:45 ` 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=20140904170308.GH5001@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=consul.kautuk@gmail.com \
--cc=guillaume@morinfr.org \
--cc=ionut.m.alexa@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mhocko@suse.cz \
--cc=mingo@redhat.com \
--cc=oleg@redhat.com \
--cc=peterz@infradead.org \
--cc=rientjes@google.com \
--cc=tkhai@yandex.ru \
/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