aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2012-04-27 15:44:56 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-04-27 15:44:56 -0400
commit3e8b5ddf17d4639d41bc57ecfb51633815b70e49 (patch)
tree9071d880cc7763f4546cf5cbfe70845864637e3c /tools
parent9d1ef56d571671097f54a5ec31a9b1fb7dc819ed (diff)
perf annotate browser: Remove the vertical line after the percentages
It is confusing when used with jump -> target lines. Requested-by: Linus Torvalds <torvalds@linux-foundation.org> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Namhyung Kim <namhyung@gmail.com> 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-xeiyfsxptwtmlvowledg6wpy@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/ui/browsers/annotate.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c
index d203dafedea..a90680b79bb 100644
--- a/tools/perf/ui/browsers/annotate.c
+++ b/tools/perf/ui/browsers/annotate.c
@@ -72,7 +72,6 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
72 slsmg_write_nstring(" ", 9); 72 slsmg_write_nstring(" ", 9);
73 } 73 }
74 74
75 ui_browser__write_graph(self, SLSMG_VLINE_CHAR);
76 SLsmg_write_char(' '); 75 SLsmg_write_char(' ');
77 76
78 /* The scroll bar isn't being used */ 77 /* The scroll bar isn't being used */
@@ -83,9 +82,9 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
83 ui_browser__set_color(self, HE_COLORSET_CODE); 82 ui_browser__set_color(self, HE_COLORSET_CODE);
84 83
85 if (!*dl->line) 84 if (!*dl->line)
86 slsmg_write_nstring(" ", width - 10); 85 slsmg_write_nstring(" ", width - 9);
87 else if (dl->offset == -1) 86 else if (dl->offset == -1)
88 slsmg_write_nstring(dl->line, width - 10); 87 slsmg_write_nstring(dl->line, width - 9);
89 else { 88 else {
90 char bf[256]; 89 char bf[256];
91 u64 addr = dl->offset; 90 u64 addr = dl->offset;
@@ -138,7 +137,7 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
138 scnprintf(bf, sizeof(bf), "%-6.6s %s", dl->name, dl->ops.raw); 137 scnprintf(bf, sizeof(bf), "%-6.6s %s", dl->name, dl->ops.raw);
139 } 138 }
140 139
141 slsmg_write_nstring(bf, width - 12 - printed); 140 slsmg_write_nstring(bf, width - 11 - printed);
142 } 141 }
143 142
144 if (current_entry) 143 if (current_entry)
@@ -176,7 +175,7 @@ static void annotate_browser__draw_current_jump(struct ui_browser *browser)
176 if (!bcursor->jump_target) 175 if (!bcursor->jump_target)
177 start_width += ab->offset_width + 1; 176 start_width += ab->offset_width + 1;
178 177
179 __ui_browser__line_arrow(browser, 10, from, to, start_width); 178 __ui_browser__line_arrow(browser, 9, from, to, start_width);
180} 179}
181 180
182static unsigned int annotate_browser__refresh(struct ui_browser *browser) 181static unsigned int annotate_browser__refresh(struct ui_browser *browser)