From: Ingo Molnar <mingo@kernel.org>
To: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Richard Yao <ryao@gentoo.org>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
x86@kernel.org, Andrew Morton <akpm@linux-foundation.org>,
Tejun Heo <tj@kernel.org>, Vineet Gupta <vgupta@synopsys.com>,
Jesper Nilsson <jesper.nilsson@axis.com>,
Jiri Slaby <jslaby@suse.cz>,
linux-kernel@vger.kernel.org, kernel@gentoo.org,
Brian Behlendorf <behlendorf1@llnl.gov>,
Linus Torvalds <torvalds@linux-foundation.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Arnaldo Carvalho de Melo <acme@infradead.org>,
Jiri Olsa <jolsa@redhat.com>
Subject: Re: [PATCH] x86/dumpstack: Walk frames when built with frame pointers
Date: Wed, 7 May 2014 18:40:14 +0200 [thread overview]
Message-ID: <20140507164014.GB16034@gmail.com> (raw)
In-Reply-To: <20140430215606.GD17745@localhost.localdomain>
* Frederic Weisbecker <fweisbec@gmail.com> wrote:
> On Sun, Apr 27, 2014 at 02:08:20PM +0200, Ingo Molnar wrote:
> >
> > * Richard Yao <ryao@gentoo.org> wrote:
> >
> > > Stack traces are generated by scanning the stack and interpeting
> > > anything that looks like it could be a pointer to something. We do
> > > not need to do this when we have frame pointers, but we do it
> > > anyway, with the distinction that we use the return pointers to mark
> > > actual frames by the absence of a question mark.
> > >
> > > The additional verbosity of stack scanning tends to bombard us with
> > > walls of text for no gain in practice, so lets switch to printing
> > > only stack frames when frame pointers are available. That we can
> > > spend less time reading stack traces and more time looking at code.
> > >
> > > Signed-off-by: Richard Yao <ryao@gentoo.org>
> > > ---
> > > arch/x86/kernel/dumpstack.c | 4 ++++
> > > 1 file changed, 4 insertions(+)
> > >
> > > diff --git a/arch/x86/kernel/dumpstack.c b/arch/x86/kernel/dumpstack.c
> > > index d9c12d3..94ffe06 100644
> > > --- a/arch/x86/kernel/dumpstack.c
> > > +++ b/arch/x86/kernel/dumpstack.c
> > > @@ -162,7 +162,11 @@ static void print_trace_address(void *data, unsigned long addr, int reliable)
> > > static const struct stacktrace_ops print_trace_ops = {
> > > .stack = print_trace_stack,
> > > .address = print_trace_address,
> > > +#ifdef CONFIG_FRAME_POINTER
> > > + .walk_stack = print_context_stack_bp,
> > > +#else
> > > .walk_stack = print_context_stack,
> > > +#endif
> > > };
>
> Besides the complementary informations brought by the full stack
> walk, another big argument toward keeping full stack walk is that if
> your frame pointer is screwed for whatever reason, you still have a
> useful stack trace.
>
> I have seen and fixed several broken frame links in x86-64 by the
> past. Those are very subtle and often hardly visible issues because,
> if they are easily spotted on common frame scenarios like : task >
> irq, they are much harder to find on trickier, rarer frame scenarios
> such as: task -> softirq -> irq -> nmi -> debug exception ->....
>
> For example before a2bbe75089d5eb9a3a46d50dd5c215e213790288 ("x86:
> Don't use frame pointer to save old stack on irq entry"), we were
> missing entire stack frames on nesting irqs (hardirq on softirqs)
> while using pure frame pointer based unwinding.
>
> Who knows if we have other remaining issues like this? Especially
> given the high possible number of frame combinations between task,
> irq, softirq, nmi and exceptions. Multiply the contexts possibility
> by the number of possible archs out there and their stack switch
> implementations.
>
> Also further frame links breakages, we have many other possibilities
> to end up with misleading frame pointers. Relying on that source
> alone definetly reduce the reliability of our stacktraces.
>
> So this goes way beyond just missing complementary informations.
> Debugging robustness itself is actually very concerned here if we
> remove the full stack walk.
Agreed, that's a very good point.
Also, consider the following holistic argument, what is easier to
achieve, when looking at an oops and not seeing the bug:
- if only I had more information
- if only I had less information
we cannot put in information that we cut out, but it's not
particularly hard to skip overly verbose information in most cases.
Yes, there's a line to be drawn with verbosity: scroll-off is a
concern when the oops does not make it to a log file.
So I don't really know.
Thanks,
Ingo
next prev parent reply other threads:[~2014-05-07 16:40 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-26 18:10 [PATCH] x86/dumpstack: Walk frames when built with frame pointers Richard Yao
2014-04-27 12:08 ` Ingo Molnar
2014-04-27 19:42 ` Peter Zijlstra
2014-04-27 19:51 ` Richard Yao
2014-04-27 20:08 ` Linus Torvalds
2014-04-27 20:36 ` Richard Yao
2014-05-07 17:18 ` Ingo Molnar
2014-05-07 17:37 ` Peter Zijlstra
2014-04-30 21:56 ` Frederic Weisbecker
2014-05-07 16:40 ` Ingo Molnar [this message]
2014-06-06 8:17 ` Peter Zijlstra
2014-06-06 8:24 ` Borislav Petkov
2014-06-06 9:35 ` Peter Zijlstra
2014-06-07 3:08 ` H. Peter Anvin
2014-06-07 3:09 ` H. Peter Anvin
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=20140507164014.GB16034@gmail.com \
--to=mingo@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@infradead.org \
--cc=akpm@linux-foundation.org \
--cc=behlendorf1@llnl.gov \
--cc=fweisbec@gmail.com \
--cc=hpa@zytor.com \
--cc=jesper.nilsson@axis.com \
--cc=jolsa@redhat.com \
--cc=jslaby@suse.cz \
--cc=kernel@gentoo.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=ryao@gentoo.org \
--cc=tglx@linutronix.de \
--cc=tj@kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=vgupta@synopsys.com \
--cc=x86@kernel.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