diff options
author | Namhyung Kim <namhyung@kernel.org> | 2016-12-22 01:03:48 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-12-22 14:35:46 -0500 |
commit | 4fa0d1aa2711a5053fb2422331bdf6bce99b5f87 (patch) | |
tree | 40adb98b11f83b6e6cbc4064d101d58f561ef4d5 | |
parent | 9b8087d72086b249ff744cee237ad12cc5e9255d (diff) |
perf sched timehist: Remove hardcoded 'comm_width' check at print_summary
Now that the default 'comm_width' value is 30, no need to check that at
print_summary,
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20161222060350.17655-1-namhyung@kernel.org
[ Split from a larger patch ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/builtin-sched.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index c65f16cbae62..5052caa91caa 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -2627,9 +2627,6 @@ static void timehist_print_summary(struct perf_sched *sched, | |||
2627 | 2627 | ||
2628 | memset(&totals, 0, sizeof(totals)); | 2628 | memset(&totals, 0, sizeof(totals)); |
2629 | 2629 | ||
2630 | if (comm_width < 30) | ||
2631 | comm_width = 30; | ||
2632 | |||
2633 | if (sched->idle_hist) { | 2630 | if (sched->idle_hist) { |
2634 | printf("\nIdle-time summary\n"); | 2631 | printf("\nIdle-time summary\n"); |
2635 | printf("%*s parent sched-out ", comm_width, "comm"); | 2632 | printf("%*s parent sched-out ", comm_width, "comm"); |