From: Ingo Molnar <mingo@elte.hu>
To: Ken Chen <kenchen@google.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Steven Rostedt <rostedt@goodmis.org>
Subject: Re: [patch] sched: fix single-depth wchan output
Date: Thu, 6 Nov 2008 08:44:17 +0100 [thread overview]
Message-ID: <20081106074417.GB8459@elte.hu> (raw)
In-Reply-To: <b040c32a0811052328k12c70644n15af3cedab32b6c3@mail.gmail.com>
* Ken Chen <kenchen@google.com> wrote:
> On Wed, Nov 5, 2008 at 10:59 PM, Ingo Molnar <mingo@elte.hu> wrote:
> > If it does stack walking manually then please update it to use
> > save_stack_trace() instead - that is the standard API that will
> > utilize the best possible stack walking machinery on the architecture
> > level.
>
> OK, I pulled the patch out of our code that export stack trace via
> /proc/pid/trace. I didn't write this patch, but I think a better
> choice would be to override struct stacktrace_ops print_trace_ops
> with a memory buffer pointer to dump the stack into. If you have
> any comments, please let me know. I will polish this patch up and
> rebase to git-head.
hm, instead of modifying the lowlevel arch dump code, why not just use
the existing save_stack_trace(), and render the output yourself via a
trivial sprintf, just like kernel/lockdep.c does?
See kernel/stacktrace.c's print_stack_trace() - that could be extended
with a sprintf_stack_trace() method. Allocate a large enough buffer
dynamically, with a max of 128 stacktrace entries or so. (the output
buffer is limited to 4K-ish anyway, right?)
As a bonus this will work on every architecture, not just x86.
a few other details:
> - char namebuf[KSYM_NAME_LEN];
> + char namebuf[128];
... time machine back to old crappy code ;-)
> symname = kallsyms_lookup(address, &symsize, &offset,
> - &modname, namebuf);
> + &modname, namebuf);
ditto. But none of this has to be modified so you can just drop these
bits.
> + read_lock(&tasklist_lock);
> + buf_show_task(posp, end, task);
> + read_unlock(&tasklist_lock);
to get a stable trace we'll need more locking than that (tasklist_lock
does not exclude scheduling, etc.) - but it takes care of the most
important detail: tasks exiting from under us. So this should be OK.
> #endif
> + INF("trace", S_IFREG|S_IRUGO, pid_trace),
that needs to be r-------- instead of r--r--r--, for security reasons.
Ingo
next prev parent reply other threads:[~2008-11-06 7:44 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-06 5:58 Ken Chen
2008-11-06 6:11 ` Ingo Molnar
2008-11-06 6:16 ` Ken Chen
2008-11-06 6:30 ` Ingo Molnar
2008-11-06 6:42 ` Ken Chen
2008-11-06 6:59 ` Ingo Molnar
2008-11-06 7:28 ` Ken Chen
2008-11-06 7:44 ` Ingo Molnar [this message]
2008-11-06 22:33 ` Andi Kleen
2008-11-06 21:56 ` Matt Mackall
2008-11-06 22:30 ` Chris Friesen
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=20081106074417.GB8459@elte.hu \
--to=mingo@elte.hu \
--cc=a.p.zijlstra@chello.nl \
--cc=kenchen@google.com \
--cc=linux-kernel@vger.kernel.org \
--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
all inboxes | Powered by JetHome®