aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui/hist.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2012-10-20 16:14:10 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-12-09 06:46:05 -0500
commitc0d246b85fc7d42688d7a5d999ea671777caf65b (patch)
tree5b1223a9b5068d2bb3a323b11be42fe5a82afa18 /tools/perf/ui/hist.c
parent1240005e0d3a7e03c2fd05603fb01676e5a004f7 (diff)
perf hists: Fix period symbol_conf.field_sep display
Currently we don't properly display hist data with symbol_conf.field_sep separator. We need to display either space or separator. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Link: http://lkml.kernel.org/n/tip-cyggwys0bz5kqdowwvfd8h72@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui/hist.c')
-rw-r--r--tools/perf/ui/hist.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c
index 0a5281fe41d6..6e639b506829 100644
--- a/tools/perf/ui/hist.c
+++ b/tools/perf/ui/hist.c
@@ -472,11 +472,15 @@ int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he,
472 return 0; 472 return 0;
473 473
474 perf_hpp__for_each_format(fmt) { 474 perf_hpp__for_each_format(fmt) {
475 /*
476 * If there's no field_sep, we still need
477 * to display initial ' '.
478 */
475 if (!sep || !first) { 479 if (!sep || !first) {
476 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " "); 480 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " ");
477 advance_hpp(hpp, ret); 481 advance_hpp(hpp, ret);
482 } else
478 first = false; 483 first = false;
479 }
480 484
481 if (color && fmt->color) 485 if (color && fmt->color)
482 ret = fmt->color(hpp, he); 486 ret = fmt->color(hpp, he);