linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Taeung Song <treeze.taeung@gmail.com>
To: Namhyung Kim <namhyung@kernel.org>,
	Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Sihyeon Jang <uneedsihyeon@gmail.com>,
	linux-kernel@vger.kernel.org, Jiri Olsa <jolsa@kernel.org>,
	kernel-team@lge.com
Subject: Re: [PATCH 1/3] perf help: Document missing options
Date: Tue, 14 Nov 2017 11:18:10 +0900	[thread overview]
Message-ID: <b414176e-ef13-4d87-c4a6-9fe044e4adce@gmail.com> (raw)
In-Reply-To: <20171114001542.GA16464@sejong>

Hi Arnaldo and Namhyung :)

On 11/14/2017 09:15 AM, Namhyung Kim wrote:
> Hi Arnaldo,
> 
> On Mon, Nov 13, 2017 at 03:29:56PM -0300, Arnaldo Carvalho de Melo wrote:
>> Em Sun, Nov 12, 2017 at 10:10:45AM +0900, Sihyeon Jang escreveu:
>>> Cc: Jiri Olsa <jolsa@kernel.org>
>>> Cc: Namhyung Kim <namhyung@kernel.org>
>>> Signed-off-by: Sihyeon Jang <uneedsihyeon@gmail.com>
>>> ---
>>>   tools/perf/Documentation/perf-help.txt | 14 +++++++++++++-
>>>   1 file changed, 13 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/tools/perf/Documentation/perf-help.txt b/tools/perf/Documentation/perf-help.txt
>>> index 5143918..bb605af 100644
>>> --- a/tools/perf/Documentation/perf-help.txt
>>> +++ b/tools/perf/Documentation/perf-help.txt
>>> @@ -7,7 +7,7 @@ perf-help - display help information about perf
>>>   
>>>   SYNOPSIS
>>>   --------
>>> -'perf help' [-a|--all] [COMMAND]
>>> +'perf help' [--all] [--man|--web|--info] [COMMAND]
>>
>> Can you try figuring out if this actually works? I tried here and it
>> doesn't, its an area we took "for free" when we copied the initial
>> codebase from git.git, but I never looked at this area that much, now
>> that I try:
> 
> Yeah, I'm not sure we need to keep it.
> 
> 
>>
>> [acme@jouet linux]$ perf help
>> Config with no key for man viewer: childrenError: wrong config key-value pair top.children=true
>> [acme@jouet linux]$
>>
>> Unsure if this is something that got broken by the 'perf config'
>> patches, Taeung?
> 
> Looks like a bug in 8e99b6d4533c ("tools include: Adopt strstarts()
> from the kernel").
> 
> Following patch should fix it:
> 
> Thanks,
> Namhyung

I also checked this error and test the below patch.
It seems that Namhyung already fixes it !!

Thanks,
Taeung

> 
> 
>  From 096b78b437b5758acc025498e88d73d9d471b3c0 Mon Sep 17 00:00:00 2001
> From: Namhyung Kim <namhyung@kernel.org>
> Date: Tue, 14 Nov 2017 09:10:43 +0900
> Subject: [PATCH] perf help: Fix a bug during strstart() conversion
> 
> The commit 8e99b6d4533c changed prefixcmp() to strstart() but missed to
> change the return value in some place.  It makes perf help print
> annoying output even for sane config items like below:
> 
>    $ perf help
>    '.root': unsupported man viewer sub key.
>    ...
> 
> Fixes: 8e99b6d4533c ("tools include: Adopt strstarts() from the kernel")
> Cc: Taeung Song <treeze.taeung@gmail.com>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
> ---
>   tools/perf/builtin-help.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/perf/builtin-help.c b/tools/perf/builtin-help.c
> index dbe4e4153bcf..ff51e5fc0daf 100644
> --- a/tools/perf/builtin-help.c
> +++ b/tools/perf/builtin-help.c
> @@ -283,7 +283,7 @@ static int perf_help_config(const char *var, const char *value, void *cb)
>   		add_man_viewer(value);
>   		return 0;
>   	}
> -	if (!strstarts(var, "man."))
> +	if (strstarts(var, "man."))
>   		return add_man_viewer_info(var, value);
>   
>   	return 0;
> @@ -313,7 +313,7 @@ static const char *cmd_to_page(const char *perf_cmd)
>   
>   	if (!perf_cmd)
>   		return "perf";
> -	else if (!strstarts(perf_cmd, "perf"))
> +	else if (strstarts(perf_cmd, "perf"))
>   		return perf_cmd;
>   
>   	return asprintf(&s, "perf-%s", perf_cmd) < 0 ? NULL : s;
> 

  reply	other threads:[~2017-11-14  2:18 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-12  1:10 [PATCH 1/3] perf help: Document missing options Sihyeon Jang
2017-11-12  1:10 ` [PATCH 2/3] perf top: " Sihyeon Jang
2017-11-13 18:25   ` Arnaldo Carvalho de Melo
2017-11-18  8:29   ` [tip:perf/core] " tip-bot for Sihyeon Jang
2017-11-12  1:10 ` [PATCH 3/3] perf top: Remove a duplicate word Sihyeon Jang
2017-11-13 18:27   ` Arnaldo Carvalho de Melo
2017-11-18  8:29   ` [tip:perf/core] " tip-bot for Sihyeon Jang
2017-11-13 18:29 ` [PATCH 1/3] perf help: Document missing options Arnaldo Carvalho de Melo
2017-11-14  0:15   ` Namhyung Kim
2017-11-14  2:18     ` Taeung Song [this message]
2017-11-14 13:03       ` Arnaldo Carvalho de Melo
2017-11-14 13:00     ` Arnaldo Carvalho de Melo
2017-11-18  8:32     ` [tip:perf/core] perf help: Fix a bug during strstart() conversion tip-bot for Namhyung Kim
2017-11-29  6:30     ` tip-bot for Namhyung Kim

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=b414176e-ef13-4d87-c4a6-9fe044e4adce@gmail.com \
    --to=treeze.taeung@gmail.com \
    --cc=acme@kernel.org \
    --cc=jolsa@kernel.org \
    --cc=kernel-team@lge.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namhyung@kernel.org \
    --cc=uneedsihyeon@gmail.com \
    /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;
as well as URLs for NNTP newsgroup(s).