From: Peter Zijlstra <peterz@infradead.org>
To: "Frank Ch. Eigler" <fche@redhat.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>,
Hideo AOKI <haoki@redhat.com>,
mingo@elte.hu, Masami Hiramatsu <mhiramat@redhat.com>,
linux-kernel@vger.kernel.org,
Steven Rostedt <rostedt@goodmis.org>
Subject: Re: Kernel marker has no performance impact on ia64.
Date: Fri, 13 Jun 2008 13:01:12 +0200 [thread overview]
Message-ID: <1213354872.31518.193.camel@twins> (raw)
In-Reply-To: <20080612173858.GA22454@redhat.com>
On Thu, 2008-06-12 at 13:38 -0400, Frank Ch. Eigler wrote:
> Hi -
>
> On Thu, Jun 12, 2008 at 06:53:41PM +0200, Peter Zijlstra wrote:
> > [...]
> > > Think this through. How should systemtap (or another user-space
> > > separate-compiled tool like lttng) do this exactly?
> >
> > lttng has trace handlers to write data into some buffer, right?
> > The trace point need not be concerned with which data, nor into what
> > buffer.
>
> The "which data" is definitely a trace point concern. It communicates
> from the developer to users as to what values are likely to be of
> interest.
But that is tracer specific - I might write a scheduler tracer that
looks at the quality of scheduling decisions and thus wants to look at
the virtual timeline variables and the scheduling class of the tasks
involved.
That's a whole different context, but the trace points are the same. Are
you saying trace points are not to allow me to do that?
> > > (a) rely on debugging information? Even assuming we could get proper
> > > anchors (PC addresses or unambiguous type names) to start
> > > searching dwarf data, we lose a key attractions of markers: that
> > > it can robustly transfer data *without* dwarf data kept around.
> >
> > Perhaps you can ship a reduced set of dwarf info [...]
>
> "I" don't ship or generate dwarf data. Distributors do.
That's ignoring the point - 'someone' could generate reduced debug info
to allow you to easily get what you want.
> > > (b) rely on hand-written C code (prototypes, pointer derefrencing
> > > wrappers) distributed with systemtap? Not only would this be a
> > > brittle maintenance pain in the form of cude duplication, but then
> > > errors in it couldn't even be detected until the final C
> > > compilation stage. That would make a lousy user experience.
> >
> > Not really sure what you mean here - I throught compile time errors
> > were the goal?!
>
> For us, it's too late. In systemtap, we try to give people useful
> information when they make mistakes. For probes of whatever sort, we
> want to know the available data types and names, while just starting
> to process their script, so that we can check types and suggest
> alternatives. C code compilation is quite some way removed and is
> supposed to be a systemtap internal implementation detail.
Sounds like you have an incomplete Native-Interface system then. You
should be able to match a native function description back to your
script language.
> > > (c) have systemtap try to parse the mhiramat-proposed "(struct
> > > task_struct * next, struct task_struct * prev)" format strings?
> > > Then we're asking systemtap to parse potentially general C type
> > > expressions, find the kernel headers that declare the types?
> > > Parse available subfields? That seems too much to ask for.
> >
> > tcc and sourcefs sound like way fun ;-)
>
> Really...
Yeah, wouldn't it be cool if the kernel came with an embedded compiler
and a filesystem that included its exact source code? Together with the
entry instrumentation site and dynamic jump patches you can do really
weird stuff... /me dreams on :-)
> > > (d) or another way?
> >
> > Get your own tracer in kernel - that provides exactly what stap needs?
>
> You are missing that (a) this is the point of markers - to allow the
> the gajillion tracers a single place per event to hook through, and
> (b) we would like to leave to subsystem developers and/or end-users as
> to what data should be available. We don't want to get into the
> middle of it.
I think a) and b) contradict each other, you cannot cater for all
tracers and limit the data they can use.
next prev parent reply other threads:[~2008-06-13 11:01 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-02 22:12 Kernel marker has no performance impact on ia64 Hideo AOKI
2008-06-02 22:32 ` Peter Zijlstra
2008-06-02 23:21 ` Mathieu Desnoyers
2008-06-03 6:07 ` Takashi Nishiie
2008-06-04 4:58 ` Masami Hiramatsu
2008-06-04 23:26 ` Mathieu Desnoyers
2008-06-04 23:40 ` Masami Hiramatsu
2008-06-04 22:27 ` Peter Zijlstra
2008-06-04 23:22 ` Mathieu Desnoyers
2008-06-05 8:12 ` Peter Zijlstra
2008-06-05 14:28 ` Masami Hiramatsu
2008-06-12 14:04 ` Mathieu Desnoyers
2008-06-12 15:31 ` Masami Hiramatsu
2008-06-12 13:53 ` Mathieu Desnoyers
2008-06-12 14:27 ` Peter Zijlstra
2008-06-12 15:53 ` Frank Ch. Eigler
2008-06-12 16:16 ` Masami Hiramatsu
2008-06-12 16:43 ` Frank Ch. Eigler
2008-06-12 16:56 ` Peter Zijlstra
2008-06-12 22:10 ` Mathieu Desnoyers
2008-06-12 17:05 ` Masami Hiramatsu
2008-06-12 17:48 ` Frank Ch. Eigler
2008-06-12 19:34 ` Masami Hiramatsu
2008-06-13 4:19 ` Takashi Nishiie
2008-06-13 18:02 ` Masami Hiramatsu
2008-06-16 2:58 ` Takashi Nishiie
2008-06-12 16:53 ` Peter Zijlstra
2008-06-12 17:38 ` Frank Ch. Eigler
2008-06-13 11:01 ` Peter Zijlstra [this message]
2008-06-13 14:17 ` Frank Ch. Eigler
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=1213354872.31518.193.camel@twins \
--to=peterz@infradead.org \
--cc=fche@redhat.com \
--cc=haoki@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@polymtl.ca \
--cc=mhiramat@redhat.com \
--cc=mingo@elte.hu \
--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