diff options
author | Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp> | 2010-05-08 04:10:29 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2010-05-09 15:52:27 -0400 |
commit | 76ba7e846fcc89d9d4b25b89e303c9058de96d60 (patch) | |
tree | 1bf5ac30708ed35a203ba9b1101cd9e597b77016 /tools/perf/builtin-lock.c | |
parent | 794e43b56c18b95fc9776c914a2659e7d558a352 (diff) |
perf lock: Drop "-a" option from cmd_record() default arguments set
This patch drops "-a" from the default arguments passed to
perf record by perf lock.
If a user wants to do a system wide record of lock events,
perf lock record -a <program> <argument> ...
is enough for this purpose.
This can reduce the size of the perf.data file.
% sudo ./perf lock record whoami
root
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.439 MB perf.data (~19170 samples) ]
% sudo ./perf lock record -a whoami # with -a option
root
[ perf record: Woken up 0 times to write data ]
[ perf record: Captured and wrote 48.962 MB perf.data (~2139197 samples) ]
Signed-off-by: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
LKML-Reference: Message-Id: <1273306229-5216-1-git-send-email-mitake@dcl.info.waseda.ac.jp>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'tools/perf/builtin-lock.c')
-rw-r--r-- | tools/perf/builtin-lock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/perf/builtin-lock.c b/tools/perf/builtin-lock.c index e549f4547b98..e18dfdc2948a 100644 --- a/tools/perf/builtin-lock.c +++ b/tools/perf/builtin-lock.c | |||
@@ -930,7 +930,6 @@ static const struct option lock_options[] = { | |||
930 | 930 | ||
931 | static const char *record_args[] = { | 931 | static const char *record_args[] = { |
932 | "record", | 932 | "record", |
933 | "-a", | ||
934 | "-R", | 933 | "-R", |
935 | "-f", | 934 | "-f", |
936 | "-m", "1024", | 935 | "-m", "1024", |