linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Linus Torvalds <torvalds@osdl.org>
To: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>,
	"Paul E. McKenney" <paulmck@us.ibm.com>,
	linux-kernel@vger.kernel.org
Subject: Re: Badness in local_bh_enable by [PATCH] fix uidhash_lock <-> RCU deadlock
Date: Tue, 31 Jan 2006 15:20:17 -0800 (PST)	[thread overview]
Message-ID: <Pine.LNX.4.64.0601311512230.7301@g5.osdl.org> (raw)
In-Reply-To: <20060131230926.GA7726@mipter.zuzino.mipt.ru>



On Wed, 1 Feb 2006, Alexey Dobriyan wrote:
>
> Flooding boot logs with
> 
> Badness in local_bh_enable at kernel/softirq.c:140

Ok, looks bad. It's through

    __dequeue_signal():
	collect_signal():
	    __sigqueue_free():
		free_uid()

where we hold the sigqueue lock. We do _not_ want to do BH processing 
there with the lock held and interrupts disabled, so the warning is 
correct, and that uidhash_lock patch potentially causes more problems than 
it fixes.

Perhaps the easiest solution is to just make them irq-safe instead 
of bh-safe? An alternative might be to make __sigqueue_free() do its work 
through RCU callbacks too, but that seems wrong.

Comments? Ingo?

		Linus

  reply	other threads:[~2006-01-31 23:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-01-31 23:09 Badness in local_bh_enable by [PATCH] fix uidhash_lock <-> RCU deadlock Alexey Dobriyan
2006-01-31 23:20 ` Linus Torvalds [this message]
2006-02-01  1:59   ` Kumar Gala
2006-02-01  2:41     ` Peter Williams

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=Pine.LNX.4.64.0601311512230.7301@g5.osdl.org \
    --to=torvalds@osdl.org \
    --cc=adobriyan@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=paulmck@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;
as well as URLs for NNTP newsgroup(s).