linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nicholas Mc Guire <der.herr@hofr.at>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: linux-rt-users@vger.kernel.org,
	Peter Zijlstra <peterz@infradead.org>,
	Steven Rostedt <rostedt@goodmis.org>,
	Andreas Platschek <platschek@ict.tuwien.ac.at>
Subject: Re: [PATCH] migrate_disable pushd down in rt_read_trylock
Date: Sat, 30 Nov 2013 07:47:55 +0100	[thread overview]
Message-ID: <20131130064755.GA12036@opentech.at> (raw)
In-Reply-To: <20131130023026.GB8114@opentech.at>

On Sat, 30 Nov 2013, Nicholas Mc Guire wrote:

> On Fri, 29 Nov 2013, Sebastian Andrzej Siewior wrote:
> 
> > * Sebastian Andrzej Siewior | 2013-11-29 16:14:01 [+0100]:
> > 
> > >* Nicholas Mc Guire | 2013-11-23 01:51:58 [+0100]:
> > >
> > >>>From 5c9a0c1510ec29c1e148f66f3c111f52f7565df1 Mon Sep 17 00:00:00 2001
> > >>From: Nicholas Mc Guire <der.herr@hofr.at>
> > >>Date: Fri, 22 Nov 2013 02:41:48 -0500
> > >>Subject: [PATCH] migrate_disable pushd down in rt_read_trylock
> > >>
> > >> No need to migrate_disable before requesting the lock and no need to 
> > >> speculatively disable/enable on every recursive call. migration_disable 
> > >> can be done at the latest point in the code before returning an acquired 
> > >> ``lock.
> > >>
> > >> patch is on top of 3.12-rt2
> > >>
> > >> No change of functionality
> > >Applied without this line.
> > 
> > and dropped because there is a problem with this:
> > - Now 
> >   if you read_lock() and then read_try_lock() then migrate_disable() is
> >   called by each caller. Also on read_unlock() migrate_enable() is called
> >   by each caller.
> > 
> > - with patch
> >   read_lock() calls migrate_disable() and read_try_lock() does not. Both
> >   get the lock. So on read_unlock(), the read_try_lock() owner remains
> >   unbalanced.
> > 
> > disabling migration prior incrementing read_depth should fix this.
> >
> yup - that one is broken - interesting that the boxes run happily for 
> days now with this bug applied :)
> 4core i3 and a 4core i7
>
Maybe not so suprising after all read_lock is only in use in three places
the lockdep cases definitely were not on in my configuration
and the mca.c case seemes not to have been hit ither (or there simply was
no recursive call in that path).

call sites:
0 mca.c     default_monarch_init_proc 1634 if (read_trylock(&tasklist_lock)) {
1 lockdep.c debug_show_all_locks      4139 if (!read_trylock(&tasklist_lock)) {
2 lockdep.c debug_show_all_locks      4166 if (read_trylock(&tasklist_lock))

given that the broken patch was disabling once and enabling potentially a
number of times it should have triggert the
WARN_ON_ONCE(p->migrate_disable <= 0); in migrate_enable() if the recursive
case would have ever bin hit... so much to testing and locking...

thx!
hofrat

  reply	other threads:[~2013-11-30  6:47 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-23  0:51 [PATCH] migrate_disable pushd down in rt_read_trylock Nicholas Mc Guire
2013-11-29 15:14 ` Sebastian Andrzej Siewior
2013-11-29 15:44   ` Sebastian Andrzej Siewior
2013-11-30  2:30     ` Nicholas Mc Guire
2013-11-30  6:47       ` Nicholas Mc Guire [this message]
2013-12-15 13:16         ` Sebastian Andrzej Siewior
2013-12-15 14:15           ` Nicholas Mc Guire
2013-12-15 15:06             ` Sebastian Andrzej Siewior

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=20131130064755.GA12036@opentech.at \
    --to=der.herr@hofr.at \
    --cc=bigeasy@linutronix.de \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=peterz@infradead.org \
    --cc=platschek@ict.tuwien.ac.at \
    --cc=rostedt@goodmis.org \
    /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).