diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-01-20 15:28:45 -0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-01-21 08:31:29 +0100 |
commit | ef12a141306c90336a3a10d40213ecd98624d274 (patch) | |
tree | 6c6d06c1c7bb5b769cc46c8da05f561aa2443b91 /tools/perf/perf.c | |
parent | dc8d6ab2b61a2d92b5d7438565ccd20b29724cb2 (diff) | |
download | linux-3.10-ef12a141306c90336a3a10d40213ecd98624d274.tar.gz linux-3.10-ef12a141306c90336a3a10d40213ecd98624d274.tar.bz2 linux-3.10-ef12a141306c90336a3a10d40213ecd98624d274.zip |
perf buildid-cache: Add new command to manage build-id cache
For now it just has operations to examine a given file, find its
build-id and add or remove it to/from the cache.
Useful, for instance, when adding binaries sent together with a
perf.data file, so that we can add them to the cache and have
the tools find it when resolving symbols.
It'll also manage the size of the cache like 'ccache' does.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1264008525-29025-1-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/perf.c')
-rw-r--r-- | tools/perf/perf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/perf.c b/tools/perf/perf.c index fc89005c3e5..05c861c045d 100644 --- a/tools/perf/perf.c +++ b/tools/perf/perf.c @@ -285,6 +285,7 @@ static void handle_internal_command(int argc, const char **argv) { const char *cmd = argv[0]; static struct cmd_struct commands[] = { + { "buildid-cache", cmd_buildid_cache, 0 }, { "buildid-list", cmd_buildid_list, 0 }, { "diff", cmd_diff, 0 }, { "help", cmd_help, 0 }, |