From mboxrd@z Thu Jan 1 00:00:00 1970 From: Linus Torvalds Subject: Re: [PATCH][RFC]: mutex: adaptive spin Date: Tue, 6 Jan 2009 08:59:52 -0800 (PST) Message-ID: References: <1230765549.7538.8.camel@think.oraclecorp.com> <87r63ljzox.fsf@basil.nowhere.org> <20090103191706.GA2002@parisc-linux.org> <1231093310.27690.5.camel@twins> <20090104184103.GE2002@parisc-linux.org> <1231242031.11687.97.camel@twins> <20090106121052.GA27232@elte.hu> <20090106165409.GA32608@elte.hu> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Peter Zijlstra , Matthew Wilcox , Andi Kleen , Chris Mason , Andrew Morton , linux-kernel@vger.kernel.org, linux-fsdevel , linux-btrfs , Thomas Gleixner , Steven Rostedt , Gregory Haskins , Nick Piggin To: Ingo Molnar Return-path: In-Reply-To: <20090106165409.GA32608@elte.hu> List-ID: On Tue, 6 Jan 2009, Ingo Molnar wrote: > > So instead of the BUG_ON() we could emit a WARN_ONCE() perhaps, plus not > do any spinning and just block - resulting in an uninterruptible task > (that the user will probably notice) and a scary message in the syslog? > [all in the slowpath] Sure. You could put it in the adaptive function thing, with something like if (WARN_ONCE(waiter == owner)) return 1; which should fall back on the old behavior and do the one-time warning. Linus