lkml.org 
[lkml]   [2015]   [Jan]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: Status of tip/x86/apic
----- Original Message -----
> From: "Steven Rostedt" <rostedt@goodmis.org>
> To: "Thomas Gleixner" <tglx@linutronix.de>
> Cc: "LKML" <linux-kernel@vger.kernel.org>, "Jiang Liu" <jiang.liu@linux.intel.com>, x86@kernel.org, "Linus Torvalds"
> <torvalds@linux-foundation.org>, "Andrew Morton" <akpm@linux-foundation.org>, "Bjorn Helgaas" <bhelgaas@google.com>,
> "Tony Luck" <tony.luck@intel.com>, "Borislav Petkov" <bp@alien8.de>, "Joerg Roedel" <joro@8bytes.org>, "Marc
> Zyngier" <marc.zyngier@arm.com>, "Yinghai Lu" <yinghai@kernel.org>, "Alex Williamson" <alex.williamson@redhat.com>,
> "Mathieu Desnoyers" <mathieu.desnoyers@efficios.com>, "Frederic Weisbecker" <fweisbec@gmail.com>
> Sent: Monday, December 15, 2014 10:52:01 AM
> Subject: Re: Status of tip/x86/apic
>
[...]
> >
> > I think the above can be solved, so we need to agree on a proper
> > set of tracepoints. I came up with the following list:
> >
> > - trace_irqdomain_create(domain->id, domain->name, ...)
>
> Is that suppose to be a variable number of args? Tracepoints do not
> support a variable length number of args passed in. I guess we could
> add that, but it wont be for this merge window.
>
> I've added Mathieu and Frederic to the Cc list here.

Hi Steven,

Let's wait and see if it's really required first.

FWIW, at the user-space level in LTTng-UST, we have two distinct ways to
do static instrumentation:

* tracepoint(): similar to those within the Linux kernel, except that the
tracepoint is wrapped in a define, so rather than calling:
trace_foo(arg1, arg2);
users call:
tracepoint(foo, arg1, arg2);

Which allows skipping over evaluation of "arg1" and "arg2"
even if they have side-effects when the tracepoint is disabled.

* tracef(): I also added a "tracef()" macro, provides a programmer interface
very similar to printf(), but prints the pretty-printed into the
trace buffers. It can be enabled dynamically similarly to tracepoints,
but does not have per-site event names attached. They are either all
enabled or disabled, and meant mainly for adding temporary debugging
trace statements.

So far, the feedback I got from end users seemed to split static
instrumentation use-cases in two major categories:

1) Instrumentation added into the code base, well structured (tracepoints),
meant to be deployed with the application for in-production use.
They need to be low-overhead,
2) Very quick (and dirty) instrumentation, meant for one-off use while
in development. IOW, a replacement to printf(), with which people are
already familiar. Low-overhead still matters, but not as much as it does
for (1).

This is why we only implemented var arg support in tracef() so far.

>
> If we do support this (and if it is needed) we could make it use the
> bprintf() infrastructure. It already supports just saving a format and
> args directly to the the buffer, and a way to print them again.

Happy new year :)

Thanks,

Mathieu

--
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com


\
 
 \ /
  Last update: 2015-01-02 18:41    [W:2.995 / U:2.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site