Re: [PATCH 16/21] tracing/uprobe: Add per-probe delete from event

2019-06-18 Thread Masami Hiramatsu
On Mon, 17 Jun 2019 22:16:46 -0400 Steven Rostedt wrote: > On Sat, 1 Jun 2019 00:19:17 +0900 > Masami Hiramatsu wrote: > > > +static bool trace_uprobe_match_command_head(struct trace_uprobe *tu, > > + int argc, const char **argv) > > +{ > > + char

Re: [PATCH 16/21] tracing/uprobe: Add per-probe delete from event

2019-06-17 Thread Steven Rostedt
On Sat, 1 Jun 2019 00:19:17 +0900 Masami Hiramatsu wrote: > +static bool trace_uprobe_match_command_head(struct trace_uprobe *tu, > + int argc, const char **argv) > +{ > + char buf[MAX_ARGSTR_LEN + 1]; > + int len; > + > + if (!argc) > +

[PATCH 16/21] tracing/uprobe: Add per-probe delete from event

2019-05-31 Thread Masami Hiramatsu
Add per-probe delete method from one event passing the head of definition. In other words, the events which match the head N parameters are deleted. Signed-off-by: Masami Hiramatsu --- kernel/trace/trace_uprobe.c | 31 ++- 1 file changed, 30 insertions(+), 1