From: Arnaldo Carvalho de Melo <acme@redhat.com>
To: Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
Cc: linux-kernel@vger.kernel.org,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@kernel.org>, Jiri Olsa <jolsa@redhat.com>,
Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>
Subject: Re: [PATCH] perf/tool: remove newline char when reading event scale and unit
Date: Mon, 1 Jun 2015 10:28:03 -0300 [thread overview]
Message-ID: <20150601132803.GA2348@redhat.com> (raw)
In-Reply-To: <1433052383-21802-1-git-send-email-maddy@linux.vnet.ibm.com>
Em Sun, May 31, 2015 at 11:36:23AM +0530, Madhavan Srinivasan escreveu:
> commit <fd979c013207> intruduced perf_event_sysfs_show function to display
> event_str value of an attr in kernel/event/core.c. But the function returns
> the value with a newline char. So, if a event also carries a event.unit file,
> when printing the counter data perf tool formatting goes for a spin.
> That is, because of the event unit, event name is printed in the newline
> because of perf_event_sysfs_show returns with a newline char.
>
> Now fixing perf core will break API, hencing proposing a fix in the perf tool.
Looks sensible, but please next time add spaces around operators, doing
it this time.
I.e., it should be:
scale[sret - 1] = '\0';
Thanks,
- Arnaldo
> + if (scale[sret-1] == '\n')
> + scale[sret-1] = '\0';
> + else
> + scale[sret] = '\0';
> +
> /*
> * save current locale
> */
> @@ -154,7 +158,10 @@ static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *n
>
> close(fd);
>
> - alias->unit[sret] = '\0';
> + if (alias->unit[sret-1] == '\n')
> + alias->unit[sret-1] = '\0';
> + else
> + alias->unit[sret] = '\0';
>
> return 0;
> error:
> --
> 1.9.1
next prev parent reply other threads:[~2015-06-01 13:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-31 6:06 [PATCH] perf/tool: remove newline char when reading event scale and unit Madhavan Srinivasan
2015-06-01 13:28 ` Arnaldo Carvalho de Melo [this message]
2015-06-04 14:10 ` [tip:perf/core] perf tools: Remove " tip-bot for Madhavan Srinivasan
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=20150601132803.GA2348@redhat.com \
--to=acme@redhat.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maddy@linux.vnet.ibm.com \
--cc=mingo@kernel.org \
--cc=mpe@ellerman.id.au \
--cc=peterz@infradead.org \
--cc=sukadev@linux.vnet.ibm.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