From: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@elte.hu>,
Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
LKML <linux-kernel@vger.kernel.org>,
Steven Rostedt <srostedt@redhat.com>
Subject: Re: [Bugfix] unregister_trace_probe needs to be called under mutex
Date: Wed, 30 Jun 2010 16:19:34 +0530 [thread overview]
Message-ID: <20100630104934.GF23231@linux.vnet.ibm.com> (raw)
In-Reply-To: <1277891066.1868.107.camel@laptop>
> > diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c
> > index 4f11a56..67670cd 100644
> > --- a/kernel/trace/trace_kprobe.c
> > +++ b/kernel/trace/trace_kprobe.c
> > @@ -269,14 +269,17 @@ static int create_trace_probe(int argc, char **argv)
> > pr_info("Delete command needs an event name.\n");
> > return -EINVAL;
> > }
> > + mutex_lock(&probe_lock);
> > tp = find_probe_event(event, group);
> > if (!tp) {
> > + mutex_unlock(&probe_lock);
> > pr_info("Event %s/%s doesn't exist.\n", group, event);
> > return -ENOENT;
> > }
> > /* delete an event */
> > unregister_trace_probe(tp);
> > free_trace_probe(tp);
> > + mutex_unlock(&probe_lock);
> > return 0;
> > }
>
> Shouldn't all that go through steven's ->reg() interface?
Currently the ->reg() interface does a enable/disable of the
probe_events. Infact the reg callback gets set in
register_trace_probe() function which inturn gets called from the
create_trace_probe().
Do we have plans to move probe_events creation to ->reg()
interface?
--
Regards
Srikar
next prev parent reply other threads:[~2010-06-30 10:55 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-30 8:45 [Bugfix] unregister_trace_probe needs to be called under mutex Srikar Dronamraju
2010-06-30 9:44 ` Peter Zijlstra
2010-06-30 10:49 ` Srikar Dronamraju [this message]
2010-06-30 16:00 ` Steven Rostedt
2010-07-01 1:09 ` Masami Hiramatsu
2010-07-06 5:08 ` Srikar Dronamraju
2010-08-05 8:01 ` [tip:perf/core] tracing/kprobes: " tip-bot for Srikar Dronamraju
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=20100630104934.GF23231@linux.vnet.ibm.com \
--to=srikar@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=mingo@elte.hu \
--cc=peterz@infradead.org \
--cc=srostedt@redhat.com \
--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.