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]>
---
 tools/perf/ui/hist.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c
index 5452960..20a4392 100644
--- a/tools/perf/ui/hist.c
+++ b/tools/perf/ui/hist.c
@@ -523,17 +523,13 @@ int hist_entry__period_snprintf(struct perf_hpp *hpp, 
struct hist_entry *he,
        struct perf_hpp_fmt *fmt;
        char *start = hpp->buf;
        int ret;
-       bool first = true;
 
        if (symbol_conf.exclude_other && !he->parent)
                return 0;
 
        perf_hpp__for_each_format(fmt) {
-               if (!sep || !first) {
-                       ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: "  ");
-                       advance_hpp(hpp, ret);
-                       first = false;
-               }
+               ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: "  ");
+               advance_hpp(hpp, ret);
 
                if (color && fmt->color)
                        ret = fmt->color(fmt, hpp, he);
-- 
1.7.11.7

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to