All of lore.kernel.org
 help / color / mirror / Atom feed
From: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@elte.hu>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Ananth N Mavinakayanahalli <ananth@in.ibm.com>,
	Jim Keniston <jkenisto@linux.vnet.ibm.com>,
	LKML <linux-kernel@vger.kernel.org>,
	Linux-mm <linux-mm@kvack.org>, Oleg Nesterov <oleg@redhat.com>,
	Andi Kleen <andi@firstfloor.org>,
	Christoph Hellwig <hch@infradead.org>,
	Arnaldo Carvalho de Melo <acme@infradead.org>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Anton Arapov <anton@redhat.com>
Subject: Re: [PATCH 3/3] tracing: Provide traceevents interface for uprobes
Date: Wed, 23 May 2012 15:27:38 +0530	[thread overview]
Message-ID: <20120523095738.GA15587@linux.vnet.ibm.com> (raw)
In-Reply-To: <1337764783.13348.142.camel@gandalf.stny.rr.com>

> > 
> > Implements trace_event support for uprobes. In its current form it can
> > be used to put probes at a specified offset in a file and dump the
> > required registers when the code flow reaches the probed address.
> > 
> > The following example shows how to dump the instruction pointer and %ax
> > a register at the probed text address.  Here we are trying to probe
> > zfree in /bin/zsh
> > 
> 
> Masami,
> 
> Can you ack this patch as well (only if you agree)
> 

Masami already acked the patches and its now part of the -tip tree.

https://lkml.org/lkml/2012/4/12/163
and 

http://lkml.org/lkml/2012/4/12/164

and 

https://lkml.org/lkml/2012/4/16/115


and these patches got picked into -tip  on May 7 

f3f096c tracing: Provide trace events interface for uprobes
8ab83f5 tracing: Extract out common code for kprobes/uprobes trace events
3a6b766 tracing: Modify is_delete, is_return from int to bool

-- 
Thanks and Regards
Srikar

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@elte.hu>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Ananth N Mavinakayanahalli <ananth@in.ibm.com>,
	Jim Keniston <jkenisto@linux.vnet.ibm.com>,
	LKML <linux-kernel@vger.kernel.org>,
	Linux-mm <linux-mm@kvack.org>, Oleg Nesterov <oleg@redhat.com>,
	Andi Kleen <andi@firstfloor.org>,
	Christoph Hellwig <hch@infradead.org>,
	Arnaldo Carvalho de Melo <acme@infradead.org>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Anton Arapov <anton@redhat.com>
Subject: Re: [PATCH 3/3] tracing: Provide traceevents interface for uprobes
Date: Wed, 23 May 2012 15:27:38 +0530	[thread overview]
Message-ID: <20120523095738.GA15587@linux.vnet.ibm.com> (raw)
In-Reply-To: <1337764783.13348.142.camel@gandalf.stny.rr.com>

> > 
> > Implements trace_event support for uprobes. In its current form it can
> > be used to put probes at a specified offset in a file and dump the
> > required registers when the code flow reaches the probed address.
> > 
> > The following example shows how to dump the instruction pointer and %ax
> > a register at the probed text address.  Here we are trying to probe
> > zfree in /bin/zsh
> > 
> 
> Masami,
> 
> Can you ack this patch as well (only if you agree)
> 

Masami already acked the patches and its now part of the -tip tree.

https://lkml.org/lkml/2012/4/12/163
and 

http://lkml.org/lkml/2012/4/12/164

and 

https://lkml.org/lkml/2012/4/16/115


and these patches got picked into -tip  on May 7 

f3f096c tracing: Provide trace events interface for uprobes
8ab83f5 tracing: Extract out common code for kprobes/uprobes trace events
3a6b766 tracing: Modify is_delete, is_return from int to bool

-- 
Thanks and Regards
Srikar


  parent reply	other threads:[~2012-05-23  9:59 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-03  1:04 [PATCH 1/3] tracing: Modify is_delete, is_return from int to bool Srikar Dronamraju
2012-04-03  1:04 ` Srikar Dronamraju
2012-04-03  1:04 ` [PATCH 2/3] tracing: Extract out common code for kprobes/uprobes traceevents Srikar Dronamraju
2012-04-03  1:04   ` Srikar Dronamraju
2012-04-05 16:55   ` Steven Rostedt
2012-04-05 16:55     ` Steven Rostedt
2012-05-23  9:18   ` Steven Rostedt
2012-05-23  9:18     ` Steven Rostedt
2012-05-23  9:38     ` Steven Rostedt
2012-05-23  9:38       ` Steven Rostedt
2012-04-03  1:05 ` [PATCH 3/3] tracing: Provide traceevents interface for uprobes Srikar Dronamraju
2012-04-03  1:05   ` Srikar Dronamraju
2012-04-06  0:12   ` Steven Rostedt
2012-04-06  0:12     ` Steven Rostedt
2012-05-23  9:19   ` Steven Rostedt
2012-05-23  9:19     ` Steven Rostedt
2012-05-23  9:41     ` Steven Rostedt
2012-05-23  9:41       ` Steven Rostedt
2012-05-23  9:57     ` Srikar Dronamraju [this message]
2012-05-23  9:57       ` Srikar Dronamraju
2012-05-23 10:02       ` Steven Rostedt
2012-05-23 10:02         ` Steven Rostedt

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=20120523095738.GA15587@linux.vnet.ibm.com \
    --to=srikar@linux.vnet.ibm.com \
    --cc=acme@infradead.org \
    --cc=akpm@linux-foundation.org \
    --cc=ananth@in.ibm.com \
    --cc=andi@firstfloor.org \
    --cc=anton@redhat.com \
    --cc=hch@infradead.org \
    --cc=jkenisto@linux.vnet.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=mingo@elte.hu \
    --cc=oleg@redhat.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.