public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
To: Namhyung Kim <namhyung@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>,
	linux-kernel@vger.kernel.org,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Ingo Molnar <mingo@redhat.com>, Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Ingo Molnar <mingo@kernel.org>
Subject: Re: Re: [PATCH -tip 4/4] perf/probe: Improve error messages with --line option
Date: Tue, 10 Jun 2014 19:26:19 +0900	[thread overview]
Message-ID: <5396DD4B.2060106@hitachi.com> (raw)
In-Reply-To: <87y4x59oam.fsf@sejong.aot.lge.com>

(2014/06/10 17:11), Namhyung Kim wrote:
> Hi Masami,
> 
> On Fri, 06 Jun 2014 07:14:06 +0000, Masami Hiramatsu wrote:
>> Improve error messages of perf probe --line mode. Current
>> perf probe shows "Debuginfo analysis failed" error with an
>> error code when the given symbol is not found as below.
>>
>>   -----
>>   # perf probe -L page_cgroup_init_flatmem
>>   Debuginfo analysis failed. (-2)
>>     Error: Failed to show lines.
>>   -----
>>
>> But -2 (-ENOMEM) means that the given source line or function
> 
> s/ENOMEM/ENOENT/

Ah, right :) It's a typo...

Thanks!

> 
> Thanks,
> Namhyung
> 
> 
>> is not found. With this patch, perf probe shows correct error
>> message as below.
>>
>>   -----
>>   # perf probe -L page_cgroup_init_flatmem
>>   Specified source line is not found.
>>     Error: Failed to show lines.
>>   -----
>>
>> There is also another debug error code is shown in the same
>> function after get_real_path(). This removes that too.
>>
>> Signed-off-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
>> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
>> Cc: Paul Mackerras <paulus@samba.org>
>> Cc: Ingo Molnar <mingo@redhat.com>
>> Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
>> ---
>>  tools/perf/util/probe-event.c |    6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c
>> index 44c7141..9a0a183 100644
>> --- a/tools/perf/util/probe-event.c
>> +++ b/tools/perf/util/probe-event.c
>> @@ -628,11 +628,11 @@ static int __show_line_range(struct line_range *lr, const char *module)
>>  
>>  	ret = debuginfo__find_line_range(dinfo, lr);
>>  	debuginfo__delete(dinfo);
>> -	if (ret == 0) {
>> +	if (ret == 0 || ret == -ENOENT) {
>>  		pr_warning("Specified source line is not found.\n");
>>  		return -ENOENT;
>>  	} else if (ret < 0) {
>> -		pr_warning("Debuginfo analysis failed. (%d)\n", ret);
>> +		pr_warning("Debuginfo analysis failed.\n");
>>  		return ret;
>>  	}
>>  
>> @@ -641,7 +641,7 @@ static int __show_line_range(struct line_range *lr, const char *module)
>>  	ret = get_real_path(tmp, lr->comp_dir, &lr->path);
>>  	free(tmp);	/* Free old path */
>>  	if (ret < 0) {
>> -		pr_warning("Failed to find source file. (%d)\n", ret);
>> +		pr_warning("Failed to find source file path.\n");
>>  		return ret;
>>  	}
>>  
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 


-- 
Masami HIRAMATSU
Software Platform Research Dept. Linux Technology Research Center
Hitachi, Ltd., Yokohama Research Laboratory
E-mail: masami.hiramatsu.pt@hitachi.com



  reply	other threads:[~2014-06-10 10:26 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-06  7:13 [PATCH -tip 0/4] perf/probe: Improve error messages Masami Hiramatsu
2014-06-06  7:13 ` [PATCH -tip 1/4] perf/probe: Improve error message for unknown member of data structure Masami Hiramatsu
2014-06-12 12:04   ` [tip:perf/core] perf probe: " tip-bot for Masami Hiramatsu
2014-06-21 18:18   ` [PATCH -tip 1/4] perf/probe: " Patrick Palka
2014-06-23  2:21     ` Masami Hiramatsu
2014-06-23  3:17       ` [PATCH -tip ] [BUGFIX]: Fix to add a missing pair of braces for error path Masami Hiramatsu
2014-06-24  7:40         ` Namhyung Kim
2014-06-24  9:08         ` Jiri Olsa
2014-06-06  7:13 ` [PATCH -tip 2/4] perf/probe: Show error code and description in verbose mode Masami Hiramatsu
2014-06-12 12:04   ` [tip:perf/core] perf probe: " tip-bot for Masami Hiramatsu
2014-06-06  7:13 ` [PATCH -tip 3/4] perf/probe: Improve an error message of perf probe --vars mode Masami Hiramatsu
2014-06-12 12:04   ` [tip:perf/core] perf probe: " tip-bot for Masami Hiramatsu
2014-06-06  7:14 ` [PATCH -tip 4/4] perf/probe: Improve error messages with --line option Masami Hiramatsu
2014-06-10  8:11   ` Namhyung Kim
2014-06-10 10:26     ` Masami Hiramatsu [this message]
2014-06-12 12:04   ` [tip:perf/core] perf probe: Improve error messages in " tip-bot for Masami Hiramatsu
2014-06-06 13:08 ` [PATCH -tip 0/4] perf/probe: Improve error messages Arnaldo Carvalho de Melo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5396DD4B.2060106@hitachi.com \
    --to=masami.hiramatsu.pt@hitachi.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@kernel.org \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=mingo@redhat.com \
    --cc=namhyung@gmail.com \
    --cc=paulus@samba.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox