aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/ui/browsers
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2011-10-18 12:37:34 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-10-18 15:03:08 -0400
commitf1cf602c16e9a93fd16705621f3430ec7ffe2c44 (patch)
tree3f31d1a6fdca87b11375245efcb79c139f0c4733 /tools/perf/util/ui/browsers
parentc172f7422c03463a7177e268ffe625c41c42c179 (diff)
perf hists: Don't format the percentage on hist_entry__snprintf
We can't have color correctly set there because in libslang (and in a future GUI) the colors must be set on a separate function call, so move that part to a separate function and make the stdio fprintf function call it. Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-jpgy42438ce9tgbqppm397lq@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/ui/browsers')
-rw-r--r--tools/perf/util/ui/browsers/hists.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c
index 2d390b9cb63e..0eced19e3bdb 100644
--- a/tools/perf/util/ui/browsers/hists.c
+++ b/tools/perf/util/ui/browsers/hists.c
@@ -547,7 +547,7 @@ static int hist_browser__show_entry(struct hist_browser *self,
547 char s[256]; 547 char s[256];
548 double percent; 548 double percent;
549 int printed = 0; 549 int printed = 0;
550 int width = self->b.width; 550 int width = self->b.width - 6; /* The percentage */
551 char folded_sign = ' '; 551 char folded_sign = ' ';
552 bool current_entry = ui_browser__is_current_entry(&self->b, row); 552 bool current_entry = ui_browser__is_current_entry(&self->b, row);
553 off_t row_offset = entry->row_offset; 553 off_t row_offset = entry->row_offset;
@@ -563,8 +563,7 @@ static int hist_browser__show_entry(struct hist_browser *self,
563 } 563 }
564 564
565 if (row_offset == 0) { 565 if (row_offset == 0) {
566 hist_entry__snprintf(entry, s, sizeof(s), self->hists, NULL, false, 566 hist_entry__snprintf(entry, s, sizeof(s), self->hists);
567 0, false, self->hists->stats.total_period);
568 percent = (entry->period * 100.0) / self->hists->stats.total_period; 567 percent = (entry->period * 100.0) / self->hists->stats.total_period;
569 568
570 ui_browser__set_percent_color(&self->b, percent, current_entry); 569 ui_browser__set_percent_color(&self->b, percent, current_entry);
@@ -574,6 +573,8 @@ static int hist_browser__show_entry(struct hist_browser *self,
574 width -= 2; 573 width -= 2;
575 } 574 }
576 575
576 slsmg_printf(" %5.2f%%", percent);
577
577 /* The scroll bar isn't being used */ 578 /* The scroll bar isn't being used */
578 if (!self->b.navkeypressed) 579 if (!self->b.navkeypressed)
579 width += 1; 580 width += 1;