From: paulmck@linux.vnet.ibm.com (Paul E. McKenney)
Subject: [ltt-dev] [PATCH] fix the "unknown" case
Date: Sun, 13 Jun 2010 22:41:48 -0700 [thread overview]
Message-ID: <20100614054148.GC2833@linux.vnet.ibm.com> (raw)
In-Reply-To: <20100614024635.GA15734@Krystal>
On Sun, Jun 13, 2010 at 10:46:35PM -0400, Mathieu Desnoyers wrote:
> * Mathieu Desnoyers (mathieu.desnoyers at efficios.com) wrote:
> > * Paul E. McKenney (paulmck at linux.vnet.ibm.com) wrote:
> > > On Sun, Jun 13, 2010 at 05:36:05PM -0400, Mathieu Desnoyers wrote:
> > > > * Paul E. McKenney (paulmck at linux.vnet.ibm.com) wrote:
> > > > > On Sun, Jun 13, 2010 at 05:20:34PM -0400, Mathieu Desnoyers wrote:
> > > > > > * Paul E. McKenney (paulmck at linux.vnet.ibm.com) wrote:
> > > > > > > On Thu, Jun 10, 2010 at 09:46:31PM -0400, Mathieu Desnoyers wrote:
> > > > > >
> > > > > > [...]
> > > > > >
> > > > > > (will reply to the rest in the individual patches)
> > > > > >
> > > > > > > > Can we trust __sync_lock_test_and_set/__sync_add_and_fetch given that
> > > > > > > > __sync_synchronize is broken ?
> > > > > > >
> > > > > > > I don't know yet. If it turns out that we cannot, then I will use some
> > > > > > > form of global locking. But the __sync_lock_test_and_set() do at least
> > > > > > > generate instructions, unlike __sync_synchronize(). ;-)
> > > > > >
> > > > > > I'm concerned about the fact that their synchronization primitives might have
> > > > > > the assembly all with, except for the memory barriers.
> > > > >
> > > > > OK. How about if I used a hashed array of locks, indexed by a hash of
> > > > > the cacheline number of the access in question? Then the "unknown" case
> > > > > doesn't depend at all on the __sync_ primitives.
> > > >
> > > > I'm afraid this won't work with signal handlers. :-/ It would be a shame to have
> > > > to make these primitives non-signal-safe just for the sake of the "unknown"
> > > > arch. Or maybe it could make sense to disable signals around these, even though
> > > > it will be really slow ?
> > >
> > > Hmmm...
> > >
> > > Maybe the right thing to do is to make the build fail in the "unknown"
> > > case. By the time we make this safe, the performance will be pretty
> > > bad!
> > >
> > > My thought is to simply not have the two "unknown" include files, so
> > > that configuration dies when trying to copy them over. Perhaps better
> > > yet, have the two "unknown" include files have nothing but a #error
> > > statement. Seem like a reasonable approach?
> >
> > Yep, I like the #error approach. It will provide a meaningful error message.
>
> Hrm. OK, I think I got a compromise for you so we can have a working "unknown"
> architecture.
>
> smp_mb(): double-fake-mutex (stack-local)
> Note: we depend on having correct memory barriers in the pthread mutex
> implementation. Hopefully they got, at least, that right for ARM. ;)
>
> uatomic_xchg():
>
> smp_mb();
> ret = __sync_lock_test_and_set(addr, v);
> smp_mb();
> ret;
>
> uatomic_cmpxchg():
>
> smp_mb();
> ret = __sync_val_compare_and_swap(addr, old, _new)
> smp_mb();
> ret;
>
> uatomic_add_return():
>
> smp_mb();
> ret = __sync_add_and_fetch(addr, v);
> smp_mb();
> ret;
>
> get_cycles(): use gettimeofday.
>
> This is based on the assumption that all architecture's __sync_*() primitives
> are right, modulo possibly incorrect memory barriers (so we provide our own).
> This would be basically showing extreme distrust in gcc's __sync_*() memory
> barriers.
>
> Thoughts ?
Interesting... I just managed to convince myself that "unknown" should
refuse to build. I will think some more about it and send a patch
tomorrow. ;-)
Thanx, Paul
next prev parent reply other threads:[~2010-06-14 5:41 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20100610225242.GA21978@linux.vnet.ibm.com>
[not found] ` <20100611014631.GA13838@Krystal>
[not found] ` <20100611171613.GD2394@linux.vnet.ibm.com>
[not found] ` <20100613212033.GF5427@Krystal>
[not found] ` <20100613212807.GF2428@linux.vnet.ibm.com>
2010-06-13 21:36 ` Mathieu Desnoyers
2010-06-14 0:52 ` Paul E. McKenney
2010-06-14 2:08 ` Mathieu Desnoyers
2010-06-14 2:46 ` Mathieu Desnoyers
2010-06-14 5:11 ` Paul E. McKenney
2010-06-14 5:41 ` Paul E. McKenney [this message]
2010-06-14 17:04 ` Paolo Bonzini
2010-06-14 18:25 ` Paul E. McKenney
2010-06-15 8:52 ` Paolo Bonzini
2010-06-15 14:57 ` Paul E. McKenney
[not found] <20100614220600.GA15130@linux.vnet.ibm.com>
2010-06-15 12:35 ` Ulrich Weigand
2010-06-15 15:07 ` Paul E. McKenney
2010-06-15 15:18 ` Paolo Bonzini
2010-06-15 16:21 ` Paul E. McKenney
2010-06-15 16:07 ` Ulrich Weigand
2010-06-15 17:00 ` Paul E. McKenney
2010-06-15 17:03 ` Mathieu Desnoyers
2010-06-15 17:32 ` Ulrich Weigand
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=20100614054148.GC2833@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.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