From: Linus Torvalds <torvalds@linux-foundation.org>
To: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>,
Thomas Gleixner <tglx@linutronix.de>,
"Eric W. Biederman" <ebiederm@xmission.com>,
Jiri Kosina <jkosina@suse.cz>,
Larry Finger <Larry.Finger@lwfinger.net>,
WANG Cong <xiyou.wangcong@gmail.com>,
Greg Kroah-Hartman <gregkh@suse.de>, Tejun Heo <tj@kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] base firmware: Fix BUG from sysfs attributes change in commit a2db6842873c8e5a70652f278d469128cb52db70
Date: Sun, 14 Mar 2010 10:20:39 -0700 (PDT) [thread overview]
Message-ID: <alpine.LFD.2.00.1003140954530.3719@i5.linux-foundation.org> (raw)
In-Reply-To: <20100314065952.GA24489@elte.hu>
On Sun, 14 Mar 2010, Ingo Molnar wrote:
> >
> > Ingo: can we agree to not put "BUG: " messages in warnings, ok? It may
> > be a bug (lower-case) that triggers them, but that whole "BUG()" thing
> > has it's own semantics with rather more serious consequences than some
> > warning that lets things continue.
>
> Sure - will change those too over to the "INFO: " pattern we've been using for
> some time. All new warnings that come via our trees use 'INFO: ', the 'BUG: '
> ones are there for historic reasons.
Yeah, I assumed so. I just did a quick "git blame" to see where the code
came from, I didn't delve any deeper.
> There's a few that are external to lockdep and are likely fatal conditions:
>
> printk( "[ BUG: bad unlock balance detected! ]\n");
> printk( "[ BUG: bad contention detected! ]\n");
> printk( "[ BUG: held lock freed! ]\n");
> printk( "[ BUG: lock held at task exit time! ]\n");
>
> (these things often tend to cause hangs/crashes later on.)
>
> and then there's a few that are mostly internal to lockdep, and should never
> be fatal:
>
> printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
> printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
> printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
> printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
> printk("BUG: key %p not in .data!\n", key);
> printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
> printk("BUG: MAX_LOCK_DEPTH too low!\n");
>
> [ there's rare exceptions - i've seen 'BUG: key' + real crash on a few occasions,
> when the warning was caused by memory corruption. But typically the warning
> is not fatal, and this is what matters to the severity of the message. ]
>
> So i'm wondering whether we should/could keep those first four with a 'BUG: '
> message, as lockdep wont crash the machine in the BUG() fashion. The other 7
> should definitely be less alarming messages.
At least my personal "mental expectation" is that BUG() implies that there
was not even a try at recovering from the situation (ie our traditional
"panic()" behavior), and that we didn't even continue. IOW, we actually
terminated a process or effectively killed the machine.
If it's "just" a case of "something is wrong, but I'm just reporting it
and continuing", then warning/info would be better. At least that's what
my personal expectations are, and why I reacted so strongly to the whole
BUG thing in this thread.
Btw, tangentially on a similar kind of "expectations of a debug message
with call trace": I wonder if those things could be made to trigger all
the fancy new automatic oops reporting.
The simplest thing to do would be to just replace _all_ of the printk +
dump_stack with just "WARN_ON()", and then append the lockdep info later.
At least then the fact that lockdep triggered would be noted by modern
user space (and perhaps logged to kerneloops etc).
A fancier thing might be to print the lockdep state _inside_ the whole
"--- [ cut here ] ---" region, so that the lockdep stuff also gets logged,
but I don't think we have the infrastructure to do that cleanly now (ie
wa have that whole "warn_slowpath_*()" thing, but it allows for a single
line printout format, not for a generic "print out debug info" function)
Linus
next prev parent reply other threads:[~2010-03-14 17:23 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-13 19:36 Larry Finger
2010-03-13 22:32 ` Linus Torvalds
2010-03-13 22:39 ` Jiri Kosina
2010-03-13 22:57 ` Linus Torvalds
2010-03-14 3:57 ` Eric W. Biederman
2010-03-14 5:46 ` Linus Torvalds
2010-03-14 6:59 ` Ingo Molnar
2010-03-14 17:20 ` Linus Torvalds [this message]
2010-03-14 18:11 ` Greg KH
2010-03-14 18:30 ` Eric W. Biederman
2010-03-14 18:38 ` Greg KH
2010-03-14 10:49 ` Wolfram Sang
2010-03-14 18:04 ` Linus Torvalds
2010-03-14 18:07 ` Linus Torvalds
2010-03-14 19:08 ` Eric W. Biederman
2010-03-15 0:48 ` Wolfram Sang
2010-03-15 0:20 ` Wolfram Sang
2010-03-15 0:29 ` [PATCH] init dynamic bin_attribute structures Wolfram Sang
2010-03-15 10:00 ` Jiri Kosina
2010-03-15 10:12 ` [rtc-linux] " Wolfram Sang
2010-03-15 18:47 ` Linus Torvalds
2010-03-13 22:55 ` [PATCH] base firmware: Fix BUG from sysfs attributes change in commit a2db6842873c8e5a70652f278d469128cb52db70 Larry Finger
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=alpine.LFD.2.00.1003140954530.3719@i5.linux-foundation.org \
--to=torvalds@linux-foundation.org \
--cc=Larry.Finger@lwfinger.net \
--cc=a.p.zijlstra@chello.nl \
--cc=ebiederm@xmission.com \
--cc=gregkh@suse.de \
--cc=jkosina@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
--cc=tj@kernel.org \
--cc=xiyou.wangcong@gmail.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
Powered by JetHome