From: "Paul E. McKenney" <paulmck@us.ibm.com>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org, matthltc@us.ibm.com,
dipankar@in.ibm.com, stern@rowland.harvard.edu, mingo@elte.hu,
tytso@us.ibm.com, dvhltc@us.ibm.com
Subject: Re: [PATCH 1/2] srcu: RCU variant permitting read-side blocking
Date: Mon, 26 Jun 2006 18:37:57 -0700 [thread overview]
Message-ID: <20060627013757.GK1295@us.ibm.com> (raw)
In-Reply-To: <20060626181418.70aeffd3.akpm@osdl.org>
On Mon, Jun 26, 2006 at 06:14:18PM -0700, Andrew Morton wrote:
> On Mon, 26 Jun 2006 17:53:51 -0700
> "Paul E. McKenney" <paulmck@us.ibm.com> wrote:
>
> > > > +struct srcu_struct_array {
> > > > + int c[2];
> > > > +} ____cacheline_internode_aligned_in_smp;
> > >
> > > ____cacheline_internode_aligned_in_smp isn't implemented..
> >
> > It was not long ago... :-/
>
> I was trying to work out why on earth this compiled.
>
> It gives you a global variable called
> ____cacheline_internode_aligned_in_smp. That works nicely until you
> include this header file from two .c files, at which time you get two
> global variables called ____cacheline_internode_aligned_in_smp. And the
> linker will happily swallow even that unless you're using -fno-common.
Hmmm...
Sounds like percpu_alloc() is strongly recommended. Made the changes,
compiling, hope to test overnight.
> > > > + if (sum == 0)
> > > > + break;
> > > > + schedule_timeout_interruptible(1);
> > > > + }
> > >
> > > Little sleeps like this are a worry. It's usually an indication that we've
> > > been lazy and haven't put in the wakeups which are needed for a
> > > minimum-latency wait.
> >
> > I have been even -more- lazy and have absolutely -no- wakeups. ;-)
> > The alternative would be to have srcu_read_unlock() wake up the
> > task doing the synchronize_srcu(), but getting that right is painful.
>
> Shouldn't be too hard...
>
> A wakeup can be relatively expensive, but one can often do
>
> if (something_which_is_inexpensive())
> wake_up(...);
>
> although it takes care.
Exactly. ;-) Been there, done that, gotten it right, but have also
run up almost every blind alley that there is.
Besides, prior to this, there is a synchronize_sched(). In many cases,
the readers will have all completed during the synchronize_sched()
latency, so my bet is that the extra complexity will have no benefit in
the common case. And if someone comes up with with a good reason to do
a blocking network receive or some such in the SRCU read-side critical
sections, I will be happy to add the wakeup machinations.
Fair enough?
(Besides, we will want to save some of the complexity budget for a
hierarchical implementation should Jesse Barnes prove correct about
future 1,000-CPU dies, right?)
> if you want to be _really_ sleazy you can do
>
> if (something_which_is_inexpensive_and_isnt_quite_right())
> wake_up(...);
>
> and, at the other end:
>
> while (something) {
> schedule_timeout_interruptible(1);
> }
>
> and rely upon the flakey-wakeup to work most of the time, so it usually
> interrupts the sleep.
Urg...
> Now erase this from your mind.
To erase it from my mind, I would have had to allow it to get that far
in the first place. ;-)
Thanx, Paul
next parent reply other threads:[~2006-06-27 1:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20060626190328.GD2141@us.ibm.com>
[not found] ` <20060626190743.GE2141@us.ibm.com>
[not found] ` <20060626134447.a75cb385.akpm@osdl.org>
[not found] ` <20060627005350.GG1295@us.ibm.com>
[not found] ` <20060626181418.70aeffd3.akpm@osdl.org>
2006-06-27 1:37 ` Paul E. McKenney [this message]
2006-06-27 21:13 Oleg Nesterov
2006-06-27 18:59 ` Paul E. McKenney
2006-06-27 19:19 ` Paul E. McKenney
2006-06-28 19:41 ` Oleg Nesterov
2006-06-28 15:32 ` Paul E. McKenney
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=20060627013757.GK1295@us.ibm.com \
--to=paulmck@us.ibm.com \
--cc=akpm@osdl.org \
--cc=dipankar@in.ibm.com \
--cc=dvhltc@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matthltc@us.ibm.com \
--cc=mingo@elte.hu \
--cc=stern@rowland.harvard.edu \
--cc=tytso@us.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
all inboxes | Powered by JetHome®