[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <708b524c-2af5-98a1-f56a-4bb4f268de7a@linux.ibm.com>
Date: Fri, 10 Dec 2021 14:41:55 +0530
From: kajoljain <kjain@...ux.ibm.com>
To: cgel.zte@...il.com, peterz@...radead.org
Cc: mingo@...hat.com, acme@...nel.org, mark.rutland@....com,
alexander.shishkin@...ux.intel.com, jolsa@...hat.com,
namhyung@...nel.org, chi.minghao@....com.cn,
linux-perf-users@...r.kernel.org, linux-kernel@...r.kernel.org,
Zeal Robot <zealci@....com.cm>
Subject: Re: [PATCH] tools/perf: remove unneeded variable make code cleaner
On 12/10/21 7:59 AM, cgel.zte@...il.com wrote:
> From: Minghao Chi <chi.minghao@....com.cn>
>
> return value form directly instead of
> taking this in another redundant variable.
Can we reword the commit message stating what and
from where we are removing it. Its not too clear.
Other than that patch looks good to me.
Reviewed-By: Kajol Jain<kjain@...ux.ibm.com>
Thanks,
Kajol Jain
>
> Reported-by: Zeal Robot <zealci@....com.cm>
> Signed-off-by: Minghao Chi <chi.minghao@....com.cn>
> ---
> tools/perf/util/callchain.c | 12 ++----------
> 1 file changed, 2 insertions(+), 10 deletions(-)
>
> diff --git a/tools/perf/util/callchain.c b/tools/perf/util/callchain.c
> index 8e2777133bd9..ed30da7e14ab 100644
> --- a/tools/perf/util/callchain.c
> +++ b/tools/perf/util/callchain.c
> @@ -1301,24 +1301,16 @@ int callchain_branch_counts(struct callchain_root *root,
>
> static int count_pri64_printf(int idx, const char *str, u64 value, char *bf, int bfsize)
> {
> - int printed;
> -
> - printed = scnprintf(bf, bfsize, "%s%s:%" PRId64 "", (idx) ? " " : " (", str, value);
> -
> - return printed;
> + return scnprintf(bf, bfsize, "%s%s:%" PRId64 "", (idx) ? " " : " (", str, value);
> }
>
> static int count_float_printf(int idx, const char *str, float value,
> char *bf, int bfsize, float threshold)
> {
> - int printed;
> -
> if (threshold != 0.0 && value < threshold)
> return 0;
>
> - printed = scnprintf(bf, bfsize, "%s%s:%.1f%%", (idx) ? " " : " (", str, value);
> -
> - return printed;
> + return scnprintf(bf, bfsize, "%s%s:%.1f%%", (idx) ? " " : " (", str, value);
> }
>
> static int branch_to_str(char *bf, int bfsize,
>
Powered by blists - more mailing lists