Namhyung Kim
ff2a6617c2
perf annotate: Add missing newline on error message
If perf.data couldn't find vmlinux image for the given build-id,
it would print error message. However it lacked a newline at the
end, so the output looked like below:
$ perf annotate --stdio
No vmlinux file with build id 63b554b2e90f14a4bced200008865e757d3e8b36
was found in the path.
Please use:
perf buildid-cache -av vmlinux
or:
--vmlinux vmlinux Percent | Source code & Disassembly of a.out
------------------------------------------------
:
:
:
: Disassembly of section .text:
:
: 00000000004004f4 <foo>:
0.00 : 4004f4: push %rbp
0.00 : 4004f5: mov %rsp,%rbp
0.00 : 4004f8: movl $0x0,-0x4(%rbp)
0.00 : 4004ff: jmp 400517 <foo+0x23>
14.70 : 400501: mov 0x200b28(%rip),%rax # 601030 <count>
0.02 : 400508: add $0x1,%rax
0.01 : 40050c: mov %rax,0x200b1d(%rip) # 601030 <count>
0.01 : 400513: addl $0x1,-0x4(%rbp)
13.92 : 400517: cmpl $0x98967f,-0x4(%rbp)
71.33 : 40051e: jle 400501 <foo+0xd>
0.00 : 400520: leaveq
0.00 : 400521: retq
Fix it by adding a newline at the end of the message. It doesn't affect
the tui output AFAICS. New output will look like this:
...
or:
--vmlinux vmlinux
Percent | Source code & Disassembly of a.out
------------------------------------------------
:
:
:
: Disassembly of section .text:
...
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1329986784-4916-6-git-send-email-namhyung.kim@lge.com
Signed-off-by: Namhyung Kim <namhyung.kim@lge.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2012-03-05 10:15:50 -03:00
..
2011-11-25 14:11:27 +11:00
2012-02-06 19:14:17 -02:00
2011-04-19 08:18:36 -03:00
2012-02-13 22:54:11 -02:00
2012-01-30 18:38:23 -02:00
2011-09-29 16:41:37 -03:00
2012-03-05 10:15:50 -03:00
2011-02-18 07:43:06 -02:00
2012-01-08 13:29:34 -02:00
2012-01-24 20:25:32 -02:00
2010-06-05 09:34:04 -03:00
2011-12-23 17:01:03 -02:00
2011-11-28 10:39:28 -02:00
2011-12-23 17:01:03 -02:00
2010-05-17 16:22:41 -03:00
2011-11-28 10:39:28 -02:00
2012-01-08 13:27:54 -02:00
2012-01-06 15:47:37 -02:00
2011-02-17 15:38:58 -02:00
2012-01-30 18:30:48 -02:00
2012-02-02 17:39:15 -02:00
2012-03-03 12:19:56 -03:00
2011-12-23 17:01:03 -02:00
2011-12-23 17:01:03 -02:00
2012-01-30 18:13:07 -02:00
2012-02-13 22:54:11 -02:00
2012-02-14 14:18:57 -02:00
2011-12-23 17:01:03 -02:00
2012-03-03 12:19:56 -03:00
2011-10-07 17:01:24 -03:00
2011-03-15 11:10:48 -03:00
2009-06-24 19:54:29 +02:00
2010-01-13 17:39:44 +01:00
2012-03-05 10:15:50 -03:00
2012-02-13 22:46:41 -02:00
2010-06-05 09:34:04 -03:00
2011-11-28 10:11:28 -02:00
2012-03-03 12:19:56 -03:00