diff options
author | David Ahern <dsahern@gmail.com> | 2013-08-20 13:15:45 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-08-26 16:25:35 -0400 |
commit | ac9be8ee4ecdeae73c78d84ebfe37009e11cf99d (patch) | |
tree | 718b8a8b74c416f9127653b3a84a5dd16307ca1e /tools/perf/builtin-trace.c | |
parent | c24ff998fc420891f17d73acab6766823d492175 (diff) |
perf trace: Make command line arguments consistent with perf-record
Common arguments like thread id, CPU list, mmap pages, etc should be
consistent across perf commands.
v3: Updated man page
v2: rebased to latest core branch
Signed-off-by: David Ahern <dsahern@gmail.com>
Link: http://lkml.kernel.org/r/1377018945-21940-1-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-trace.c')
-rw-r--r-- | tools/perf/builtin-trace.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c index 42353165472a..9891d8cdb73d 100644 --- a/tools/perf/builtin-trace.c +++ b/tools/perf/builtin-trace.c | |||
@@ -693,17 +693,17 @@ int cmd_trace(int argc, const char **argv, const char *prefix __maybe_unused) | |||
693 | OPT_STRING('o', "output", &output_name, "file", "output file name"), | 693 | OPT_STRING('o', "output", &output_name, "file", "output file name"), |
694 | OPT_STRING('p', "pid", &trace.opts.target.pid, "pid", | 694 | OPT_STRING('p', "pid", &trace.opts.target.pid, "pid", |
695 | "trace events on existing process id"), | 695 | "trace events on existing process id"), |
696 | OPT_STRING(0, "tid", &trace.opts.target.tid, "tid", | 696 | OPT_STRING('t', "tid", &trace.opts.target.tid, "tid", |
697 | "trace events on existing thread id"), | 697 | "trace events on existing thread id"), |
698 | OPT_BOOLEAN(0, "all-cpus", &trace.opts.target.system_wide, | 698 | OPT_BOOLEAN('a', "all-cpus", &trace.opts.target.system_wide, |
699 | "system-wide collection from all CPUs"), | 699 | "system-wide collection from all CPUs"), |
700 | OPT_STRING(0, "cpu", &trace.opts.target.cpu_list, "cpu", | 700 | OPT_STRING('C', "cpu", &trace.opts.target.cpu_list, "cpu", |
701 | "list of cpus to monitor"), | 701 | "list of cpus to monitor"), |
702 | OPT_BOOLEAN(0, "no-inherit", &trace.opts.no_inherit, | 702 | OPT_BOOLEAN('i', "no-inherit", &trace.opts.no_inherit, |
703 | "child tasks do not inherit counters"), | 703 | "child tasks do not inherit counters"), |
704 | OPT_UINTEGER(0, "mmap-pages", &trace.opts.mmap_pages, | 704 | OPT_UINTEGER('m', "mmap-pages", &trace.opts.mmap_pages, |
705 | "number of mmap data pages"), | 705 | "number of mmap data pages"), |
706 | OPT_STRING(0, "uid", &trace.opts.target.uid_str, "user", | 706 | OPT_STRING('u', "uid", &trace.opts.target.uid_str, "user", |
707 | "user to profile"), | 707 | "user to profile"), |
708 | OPT_CALLBACK(0, "duration", &trace, "float", | 708 | OPT_CALLBACK(0, "duration", &trace, "float", |
709 | "show only events with duration > N.M ms", | 709 | "show only events with duration > N.M ms", |