perf hists: Fix period symbol_conf.field_sep display
authorJiri Olsa <[email protected]>
Sat, 20 Oct 2012 20:14:10 +0000 (22:14 +0200)
committerArnaldo Carvalho de Melo <[email protected]>
Sun, 9 Dec 2012 11:46:05 +0000 (08:46 -0300)
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 <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Namhyung Kim <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/ui/hist.c

index 0a5281fe41d60810730a244bf76e8d3268334f86..6e639b506829190fad4a111a08808cd4caf6f720 100644 (file)
@@ -472,11 +472,15 @@ int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he,
                return 0;
 
        perf_hpp__for_each_format(fmt) {
+               /*
+                * If there's no field_sep, we still need
+                * to display initial '  '.
+                */
                if (!sep || !first) {
                        ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: "  ");
                        advance_hpp(hpp, ret);
+               } else
                        first = false;
-               }
 
                if (color && fmt->color)
                        ret = fmt->color(hpp, he);