From: Peter Zijlstra <peterz@infradead.org>
To: Boqun Feng <boqun.feng@gmail.com>
Cc: elena.reshetova@intel.com, gregkh@linuxfoundation.org,
keescook@chromium.org, arnd@arndb.de, tglx@linutronix.de,
mingo@kernel.org, h.peter.anvin@intel.com, will.deacon@arm.com,
dwindsor@gmail.com, dhowells@redhat.com,
linux-kernel@vger.kernel.org,
kernel-hardening@lists.openwall.com
Subject: [kernel-hardening] Re: [PATCH 4/5] atomic: Introduce atomic_try_cmpxchg()
Date: Mon, 6 Feb 2017 09:12:37 +0100 [thread overview]
Message-ID: <20170206081237.GG6515@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <20170206042428.GA17028@tardis.cn.ibm.com>
On Mon, Feb 06, 2017 at 12:24:28PM +0800, Boqun Feng wrote:
> On Fri, Feb 03, 2017 at 02:26:02PM +0100, Peter Zijlstra wrote:
> >
> > for (;;) {
> > new = val $op $imm;
> > if (try_cmpxchg(ptr, &val, new))
> > break;
> > }
> >
> > while also generating better code (GCC6 and onwards).
> >
>
> But switching to try_cmpxchg() will make @val a memory location, which
> could not be put in a register. And this will generate unnecessary
> memory accesses on archs having enough registers(PPC, e.g.).
GCC was perfectly capable of making @val a register in the code I was
looking at.
> > +#ifndef atomic_try_cmpxchg
> > +
> > +#define __atomic_try_cmpxchg(type, _p, _po, _n) \
> > +({ \
> > + typeof(_po) __po = (_po); \
> > + typeof(*(_po)) __o = *__po; \
> > + bool success = (atomic_cmpxchg##type((_p), __o, (_n)) == __o); \
> > + *__po = __o; \
>
> Besides, is this part correct? atomic_cmpxchg_*() wouldn't change the
> value of __o, so *__po wouldn't be changed.. IOW, in case of failure,
> *ptr wouldn't be updated to a new value.
>
> Maybe this should be:
>
> bool success;
> *__po = atomic_cmpxchg##type((_p), __o, (_n));
> sucess = (*__po == _o);
>
> , right?
Yes, botched that. Don't think I even compiled it to be honest :/
WARNING: multiple messages have this Message-ID (diff)
From: Peter Zijlstra <peterz@infradead.org>
To: Boqun Feng <boqun.feng@gmail.com>
Cc: elena.reshetova@intel.com, gregkh@linuxfoundation.org,
keescook@chromium.org, arnd@arndb.de, tglx@linutronix.de,
mingo@kernel.org, h.peter.anvin@intel.com, will.deacon@arm.com,
dwindsor@gmail.com, dhowells@redhat.com,
linux-kernel@vger.kernel.org,
kernel-hardening@lists.openwall.com
Subject: Re: [PATCH 4/5] atomic: Introduce atomic_try_cmpxchg()
Date: Mon, 6 Feb 2017 09:12:37 +0100 [thread overview]
Message-ID: <20170206081237.GG6515@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <20170206042428.GA17028@tardis.cn.ibm.com>
On Mon, Feb 06, 2017 at 12:24:28PM +0800, Boqun Feng wrote:
> On Fri, Feb 03, 2017 at 02:26:02PM +0100, Peter Zijlstra wrote:
> >
> > for (;;) {
> > new = val $op $imm;
> > if (try_cmpxchg(ptr, &val, new))
> > break;
> > }
> >
> > while also generating better code (GCC6 and onwards).
> >
>
> But switching to try_cmpxchg() will make @val a memory location, which
> could not be put in a register. And this will generate unnecessary
> memory accesses on archs having enough registers(PPC, e.g.).
GCC was perfectly capable of making @val a register in the code I was
looking at.
> > +#ifndef atomic_try_cmpxchg
> > +
> > +#define __atomic_try_cmpxchg(type, _p, _po, _n) \
> > +({ \
> > + typeof(_po) __po = (_po); \
> > + typeof(*(_po)) __o = *__po; \
> > + bool success = (atomic_cmpxchg##type((_p), __o, (_n)) == __o); \
> > + *__po = __o; \
>
> Besides, is this part correct? atomic_cmpxchg_*() wouldn't change the
> value of __o, so *__po wouldn't be changed.. IOW, in case of failure,
> *ptr wouldn't be updated to a new value.
>
> Maybe this should be:
>
> bool success;
> *__po = atomic_cmpxchg##type((_p), __o, (_n));
> sucess = (*__po == _o);
>
> , right?
Yes, botched that. Don't think I even compiled it to be honest :/
next prev parent reply other threads:[~2017-02-06 8:12 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-03 13:25 [kernel-hardening] [PATCH 0/5] refcount_t and various related bits Peter Zijlstra
2017-02-03 13:25 ` Peter Zijlstra
2017-02-03 13:25 ` [kernel-hardening] [PATCH 1/5] refcount_t: A special purpose refcount type Peter Zijlstra
2017-02-03 13:25 ` Peter Zijlstra
2017-02-03 18:09 ` [kernel-hardening] " Kees Cook
2017-02-03 18:09 ` Kees Cook
2017-02-03 23:37 ` [kernel-hardening] " Kees Cook
2017-02-03 23:37 ` Kees Cook
2017-02-03 13:26 ` [kernel-hardening] [PATCH 2/5] kref: Implement using refcount_t Peter Zijlstra
2017-02-03 13:26 ` Peter Zijlstra
2017-02-06 13:06 ` [kernel-hardening] " Greg KH
2017-02-06 13:06 ` Greg KH
2017-02-03 13:26 ` [kernel-hardening] [PATCH 3/5] x86: Implement __WARN using UD2 Peter Zijlstra
2017-02-03 13:26 ` Peter Zijlstra
2017-02-03 13:26 ` [kernel-hardening] [PATCH 4/5] atomic: Introduce atomic_try_cmpxchg() Peter Zijlstra
2017-02-03 13:26 ` Peter Zijlstra
2017-02-06 4:24 ` [kernel-hardening] " Boqun Feng
2017-02-06 4:24 ` Boqun Feng
2017-02-06 6:32 ` [kernel-hardening] " Boqun Feng
2017-02-06 6:32 ` Boqun Feng
2017-02-06 8:12 ` Peter Zijlstra [this message]
2017-02-06 8:12 ` Peter Zijlstra
2017-02-03 13:26 ` [kernel-hardening] [PATCH 5/5] refcount: Use atomic_try_cmpxchg() Peter Zijlstra
2017-02-03 13:26 ` 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=20170206081237.GG6515@twins.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=arnd@arndb.de \
--cc=boqun.feng@gmail.com \
--cc=dhowells@redhat.com \
--cc=dwindsor@gmail.com \
--cc=elena.reshetova@intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=h.peter.anvin@intel.com \
--cc=keescook@chromium.org \
--cc=kernel-hardening@lists.openwall.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=tglx@linutronix.de \
--cc=will.deacon@arm.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.