[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c62985530910120331g42ff49a3pd043ef9c6923143e@mail.gmail.com>
Date: Mon, 12 Oct 2009 12:31:16 +0200
From: Frédéric Weisbecker <fweisbec@...il.com>
To: Masami Hiramatsu <mhiramat@...hat.com>
Cc: Steven Rostedt <rostedt@...dmis.org>, Ingo Molnar <mingo@...e.hu>,
lkml <linux-kernel@...r.kernel.org>,
systemtap <systemtap@...rces.redhat.com>,
DLE <dle-develop@...ts.sourceforge.net>,
Thomas Gleixner <tglx@...utronix.de>,
Arnaldo Carvalho de Melo <acme@...hat.com>,
Mike Galbraith <efault@....de>,
Paul Mackerras <paulus@...ba.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Christoph Hellwig <hch@...radead.org>,
Ananth N Mavinakayanahalli <ananth@...ibm.com>,
Jim Keniston <jkenisto@...ibm.com>,
"Frank Ch. Eigler" <fche@...hat.com>
Subject: Re: [PATCH tracing/kprobes v4] perf: Add perf probe subcommand for
kprobe-event setup helper
2009/10/8 Masami Hiramatsu <mhiramat@...hat.com>:
> Add perf probe subcommand for kprobe-event setup helper to perf command.
> This allows user to define kprobe events by C expressions (C line numbers,
> C function names, and C local variables).
>
> Usage
> -----
> perf probe [<options>] -P 'PROBEDEF' [-P 'PROBEDEF' ...]
>
> -k, --vmlinux <file> vmlinux/module pathname
> -P, --probe <p|r:[GRP/]NAME FUNC[+OFFS][@SRC]|@SRC:LINE [ARG ...]>
> probe point definition, where
> p: kprobe probe
> r: kretprobe probe
> GRP: Group name (optional)
> NAME: Event name
> FUNC: Function name
> OFFS: Offset from function entry (in byte)
> SRC: Source code path
> LINE: Line number
> ARG: Probe argument (local variable name or
> kprobe-tracer argument format is supported.)
>
> Changes in v4:
> - Add _GNU_SOURCE macro for strndup().
>
> Changes in v3:
> - Remove -r option because perf always be used for online kernel.
> - Check malloc/calloc results.
>
> Changes in v2:
> - Check synthesized string length.
> - Rename perf kprobe to perf probe.
> - Use spaces for separator and update usage comment.
> - Check error paths in parse_probepoint().
> - Check optimized-out variables.
>
> Signed-off-by: Masami Hiramatsu <mhiramat@...hat.com>
> Cc: Frederic Weisbecker <fweisbec@...il.com>
> Cc: Ingo Molnar <mingo@...e.hu>
> Cc: Thomas Gleixner <tglx@...utronix.de>
> Cc: Arnaldo Carvalho de Melo <acme@...hat.com>
> Cc: Steven Rostedt <rostedt@...dmis.org>
> Cc: Mike Galbraith <efault@....de>
> Cc: Paul Mackerras <paulus@...ba.org>
> Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
> Cc: Christoph Hellwig <hch@...radead.org>
> Cc: Ananth N Mavinakayanahalli <ananth@...ibm.com>
> Cc: Jim Keniston <jkenisto@...ibm.com>
> Cc: Frank Ch. Eigler <fche@...hat.com>
> ---
>
[...]
> +/* Default vmlinux search paths */
> +#define NR_SEARCH_PATH 3
> +const char *default_search_path[NR_SEARCH_PATH] = {
> +"/lib/modules/%s/build/vmlinux", /* Custom build kernel */
> +"/usr/lib/debug/lib/modules/%s/vmlinux", /* Red Hat debuginfo */
> +"/boot/vmlinux-debug-%s", /* Ubuntu */
> +};
[...]
> +static int open_default_vmlinux(void)
> +{
> + struct utsname uts;
> + char fname[MAX_PATH_LEN];
> + int fd, ret, i;
> +
> + ret = uname(&uts);
> + if (ret) {
> + debug("uname() failed.\n");
> + return -errno;
> + }
> + session.release = uts.release;
> + for (i = 0; i < NR_SEARCH_PATH; i++) {
> + ret = snprintf(fname, MAX_PATH_LEN,
> + default_search_path[i], session.release);
> + if (ret >= MAX_PATH_LEN || ret < 0) {
> + debug("Filename(%d,%s) is too long.\n", i, uts.release);
> + errno = E2BIG;
> + return -E2BIG;
> + }
> + debug("try to open %s\n", fname);
> + fd = open(fname, O_RDONLY);
> + if (fd >= 0)
> + break;
> + }
> + return fd;
> +}
We have a kind of kernel path finder already inside perf. It might be
encapsulated
inside the load_kernel() helper, I don't remember exactly.
It would be better to make use of such centralized and already
existing facility.
The patchset looks good. I'll apply and push it soon.
Thanks a lot!
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists