aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStanislav Fomichev <stfomichev@yandex-team.ru>2013-11-01 12:25:46 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-11-27 12:58:36 -0500
commit54874e3236b834064943c02a647823ab5d97be57 (patch)
treead6e6c362e9cccde125f29a6648f030929ec37f4
parent0a8eb275cbdb8462854d5f7e1168d86cee4cc9ea (diff)
perf timechart: Add option to limit number of tasks
Add -n option to specify min. number of tasks to print. Signed-off-by: Stanislav Fomichev <stfomichev@yandex-team.ru> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1383323151-19810-3-git-send-email-stfomichev@yandex-team.ru Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/Documentation/perf-timechart.txt4
-rw-r--r--tools/perf/builtin-timechart.c5
2 files changed, 8 insertions, 1 deletions
diff --git a/tools/perf/Documentation/perf-timechart.txt b/tools/perf/Documentation/perf-timechart.txt
index 3ff8bd4f0b4d..4373144a43b4 100644
--- a/tools/perf/Documentation/perf-timechart.txt
+++ b/tools/perf/Documentation/perf-timechart.txt
@@ -54,6 +54,10 @@ $ perf timechart
54 54
55 Written 10.2 seconds of trace to output.svg. 55 Written 10.2 seconds of trace to output.svg.
56 56
57-n::
58--proc-num::
59 Print task info for at least given number of tasks.
60
57SEE ALSO 61SEE ALSO
58-------- 62--------
59linkperf:perf-record[1] 63linkperf:perf-record[1]
diff --git a/tools/perf/builtin-timechart.c b/tools/perf/builtin-timechart.c
index bb21e57ff9bb..c352be418f98 100644
--- a/tools/perf/builtin-timechart.c
+++ b/tools/perf/builtin-timechart.c
@@ -41,6 +41,7 @@
41#define SUPPORT_OLD_POWER_EVENTS 1 41#define SUPPORT_OLD_POWER_EVENTS 1
42#define PWR_EVENT_EXIT -1 42#define PWR_EVENT_EXIT -1
43 43
44static int proc_num = 15;
44 45
45static unsigned int numcpus; 46static unsigned int numcpus;
46static u64 min_freq; /* Lowest CPU frequency seen */ 47static u64 min_freq; /* Lowest CPU frequency seen */
@@ -955,7 +956,7 @@ static void write_svg_file(const char *filename)
955 do { 956 do {
956 count = determine_display_tasks(thresh); 957 count = determine_display_tasks(thresh);
957 thresh /= 10; 958 thresh /= 10;
958 } while (!process_filter && thresh && count < 15); 959 } while (!process_filter && thresh && count < proc_num);
959 960
960 open_svg(filename, numcpus, count, first_time, last_time); 961 open_svg(filename, numcpus, count, first_time, last_time);
961 962
@@ -1102,6 +1103,8 @@ int cmd_timechart(int argc, const char **argv,
1102 parse_process), 1103 parse_process),
1103 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", 1104 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1104 "Look for files with symbols relative to this directory"), 1105 "Look for files with symbols relative to this directory"),
1106 OPT_INTEGER('n', "proc-num", &proc_num,
1107 "min. number of tasks to print"),
1105 OPT_END() 1108 OPT_END()
1106 }; 1109 };
1107 const char * const timechart_usage[] = { 1110 const char * const timechart_usage[] = {