----- Original Message ----- > From: "Steven Rostedt" <[email protected]> > To: "Mathieu Desnoyers" <[email protected]> > Cc: [email protected], "Ingo Molnar" <[email protected]>, "Frederic > Weisbecker" <[email protected]>, > "Andrew Morton" <[email protected]> > Sent: Wednesday, March 19, 2014 11:01:32 PM > Subject: Re: [RFC PATCH v6 2/3] Tracepoint API doc update: data argument > > On Wed, 19 Mar 2014 18:31:01 -0400 > Mathieu Desnoyers <[email protected]> wrote: > > > Describe the @data argument (probe private data). > > As you probably noticed, I added your previous patch to my tree. > You don't need to keep this with your patches.
OK, thanks! Mathieu > > -- Steve > > > > > Fixes: 38516ab59fbc "tracing: Let tracepoints have data passed to > > tracepoint callbacks" > > Signed-off-by: Mathieu Desnoyers <[email protected]> > > CC: Steven Rostedt <[email protected]> > > CC: Ingo Molnar <[email protected]> > > CC: Frederic Weisbecker <[email protected]> > > CC: Andrew Morton <[email protected]> > > --- > > kernel/tracepoint.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/kernel/tracepoint.c b/kernel/tracepoint.c > > index f27e5f0..2e4bfcb 100644 > > --- a/kernel/tracepoint.c > > +++ b/kernel/tracepoint.c > > @@ -370,6 +370,7 @@ tracepoint_add_probe(const char *name, void *probe, > > void *data) > > * tracepoint_probe_register - Connect a probe to a tracepoint > > * @name: tracepoint name > > * @probe: probe handler > > + * @data: probe private data > > * > > * Returns 0 if ok, error value on error. > > * The probe address must at least be aligned on the architecture pointer > > size. > > @@ -412,6 +413,7 @@ tracepoint_remove_probe(const char *name, void *probe, > > void *data) > > * tracepoint_probe_unregister - Disconnect a probe from a tracepoint > > * @name: tracepoint name > > * @probe: probe function pointer > > + * @data: probe private data > > * > > * We do not need to call a synchronize_sched to make sure the probes have > > * finished running before doing a module unload, because the module > > unload > > -- Mathieu Desnoyers EfficiOS Inc. http://www.efficios.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

