linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Yang Jihong <yangjihong1@huawei.com>,
	peterz@infradead.org, mingo@redhat.com, acme@kernel.org,
	mark.rutland@arm.com, alexander.shishkin@linux.intel.com,
	jolsa@kernel.org, namhyung@kernel.org, irogers@google.com,
	carsten.haitzler@arm.com, leo.yan@linaro.org,
	ravi.bangoria@amd.com, martin.lau@kernel.org, ak@linux.intel.com,
	masami.hiramatsu.pt@hitachi.com,
	linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] perf tools: Fix usage of the verbose variable
Date: Tue, 20 Dec 2022 09:44:41 +0200	[thread overview]
Message-ID: <fde42d64-390c-53c2-b5f0-5441366dbaf1@intel.com> (raw)
In-Reply-To: <20221220035702.188413-3-yangjihong1@huawei.com>

On 20/12/22 05:57, Yang Jihong wrote:
> The data type of the verbose variable is integer and can be negative,
> replace improperly used cases in a unified manner:
>  1. if (verbose)        => if (verbose > 0)
>  2. if (!verbose)       => if (verbose <= 0)
>  3. if (XX && verbose)  => if (XX && verbose > 0)
>  4. if (XX && !verbose) => if (XX && verbose <= 0)
> 
> Signed-off-by: Yang Jihong <yangjihong1@huawei.com>

Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  tools/perf/builtin-lock.c                   | 6 +++---
>  tools/perf/builtin-record.c                 | 4 ++--
>  tools/perf/builtin-script.c                 | 2 +-
>  tools/perf/builtin-stat.c                   | 4 ++--
>  tools/perf/dlfilters/dlfilter-test-api-v0.c | 2 +-
>  tools/perf/tests/builtin-test.c             | 2 +-
>  tools/perf/tests/dlfilter-test.c            | 2 +-
>  tools/perf/util/bpf_lock_contention.c       | 2 +-
>  tools/perf/util/dlfilter.c                  | 2 +-
>  9 files changed, 13 insertions(+), 13 deletions(-)
> 
> diff --git a/tools/perf/builtin-lock.c b/tools/perf/builtin-lock.c
> index 25c0a5e5051f..6276dfbc94a1 100644
> --- a/tools/perf/builtin-lock.c
> +++ b/tools/perf/builtin-lock.c
> @@ -1029,7 +1029,7 @@ static int report_lock_contention_begin_event(struct evsel *evsel,
>  		if (!ls)
>  			return -ENOMEM;
>  
> -		if (aggr_mode == LOCK_AGGR_CALLER && verbose) {
> +		if (aggr_mode == LOCK_AGGR_CALLER && verbose > 0) {
>  			ls->callstack = get_callstack(sample, max_stack_depth);
>  			if (ls->callstack == NULL)
>  				return -ENOMEM;
> @@ -1214,7 +1214,7 @@ static void print_bad_events(int bad, int total)
>  	for (i = 0; i < BROKEN_MAX; i++)
>  		broken += bad_hist[i];
>  
> -	if (quiet || (broken == 0 && !verbose))
> +	if (quiet || (broken == 0 && verbose <= 0))
>  		return;
>  
>  	pr_info("\n=== output for debug===\n\n");
> @@ -1529,7 +1529,7 @@ static void print_contention_result(struct lock_contention *con)
>  			break;
>  		}
>  
> -		if (aggr_mode == LOCK_AGGR_CALLER && verbose) {
> +		if (aggr_mode == LOCK_AGGR_CALLER && verbose > 0) {
>  			struct map *kmap;
>  			struct symbol *sym;
>  			char buf[128];
> diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
> index 8ecffa696ce3..29dcd454b8e2 100644
> --- a/tools/perf/builtin-record.c
> +++ b/tools/perf/builtin-record.c
> @@ -3629,7 +3629,7 @@ static int record__init_thread_cpu_masks(struct record *rec, struct perf_cpu_map
>  	for (t = 0; t < rec->nr_threads; t++) {
>  		__set_bit(perf_cpu_map__cpu(cpus, t).cpu, rec->thread_masks[t].maps.bits);
>  		__set_bit(perf_cpu_map__cpu(cpus, t).cpu, rec->thread_masks[t].affinity.bits);
> -		if (verbose) {
> +		if (verbose > 0) {
>  			pr_debug("thread_masks[%d]: ", t);
>  			mmap_cpu_mask__scnprintf(&rec->thread_masks[t].maps, "maps");
>  			pr_debug("thread_masks[%d]: ", t);
> @@ -3726,7 +3726,7 @@ static int record__init_thread_masks_spec(struct record *rec, struct perf_cpu_ma
>  		}
>  		rec->thread_masks = thread_masks;
>  		rec->thread_masks[t] = thread_mask;
> -		if (verbose) {
> +		if (verbose > 0) {
>  			pr_debug("thread_masks[%d]: ", t);
>  			mmap_cpu_mask__scnprintf(&rec->thread_masks[t].maps, "maps");
>  			pr_debug("thread_masks[%d]: ", t);
> diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
> index 88888fb885c8..69394ac0a20d 100644
> --- a/tools/perf/builtin-script.c
> +++ b/tools/perf/builtin-script.c
> @@ -2233,7 +2233,7 @@ static void process_event(struct perf_script *script,
>  	if (PRINT_FIELD(METRIC))
>  		perf_sample__fprint_metric(script, thread, evsel, sample, fp);
>  
> -	if (verbose)
> +	if (verbose > 0)
>  		fflush(fp);
>  }
>  
> diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
> index bf640abc9c41..9f3e4b257516 100644
> --- a/tools/perf/builtin-stat.c
> +++ b/tools/perf/builtin-stat.c
> @@ -266,7 +266,7 @@ static void evlist__check_cpu_maps(struct evlist *evlist)
>  		evsel__group_desc(leader, buf, sizeof(buf));
>  		pr_warning("  %s\n", buf);
>  
> -		if (verbose) {
> +		if (verbose > 0) {
>  			cpu_map__snprint(leader->core.cpus, buf, sizeof(buf));
>  			pr_warning("     %s: %s\n", leader->name, buf);
>  			cpu_map__snprint(evsel->core.cpus, buf, sizeof(buf));
> @@ -2493,7 +2493,7 @@ int cmd_stat(int argc, const char **argv)
>  		if (iostat_mode == IOSTAT_LIST) {
>  			iostat_list(evsel_list, &stat_config);
>  			goto out;
> -		} else if (verbose)
> +		} else if (verbose > 0)
>  			iostat_list(evsel_list, &stat_config);
>  		if (iostat_mode == IOSTAT_RUN && !target__has_cpu(&target))
>  			target.system_wide = true;
> diff --git a/tools/perf/dlfilters/dlfilter-test-api-v0.c b/tools/perf/dlfilters/dlfilter-test-api-v0.c
> index b17eb52a0694..b1f51efd67d6 100644
> --- a/tools/perf/dlfilters/dlfilter-test-api-v0.c
> +++ b/tools/perf/dlfilters/dlfilter-test-api-v0.c
> @@ -119,7 +119,7 @@ struct perf_dlfilter_fns perf_dlfilter_fns;
>  static int verbose;
>  
>  #define pr_debug(fmt, ...) do { \
> -		if (verbose) \
> +		if (verbose > 0) \
>  			fprintf(stderr, fmt, ##__VA_ARGS__); \
>  	} while (0)
>  
> diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c
> index f6c16ad8ed50..cfa61493c750 100644
> --- a/tools/perf/tests/builtin-test.c
> +++ b/tools/perf/tests/builtin-test.c
> @@ -305,7 +305,7 @@ static int shell_test__run(struct test_suite *test, int subdir __maybe_unused)
>  
>  	path__join(script, sizeof(script) - 3, st->dir, st->file);
>  
> -	if (verbose)
> +	if (verbose > 0)
>  		strncat(script, " -v", sizeof(script) - strlen(script) - 1);
>  
>  	err = system(script);
> diff --git a/tools/perf/tests/dlfilter-test.c b/tools/perf/tests/dlfilter-test.c
> index 99aa72e425e4..086fd2179e41 100644
> --- a/tools/perf/tests/dlfilter-test.c
> +++ b/tools/perf/tests/dlfilter-test.c
> @@ -88,7 +88,7 @@ static __printf(1, 2) int system_cmd(const char *fmt, ...)
>  	if (ret <= 0 || ret >= MAXCMD)
>  		return -1;
>  
> -	if (!verbose)
> +	if (verbose <= 0)
>  		strcat(cmd, REDIRECT_TO_DEV_NULL);
>  
>  	pr_debug("Command: %s\n", cmd);
> diff --git a/tools/perf/util/bpf_lock_contention.c b/tools/perf/util/bpf_lock_contention.c
> index 8e1b791dc58f..df8dbb5191b4 100644
> --- a/tools/perf/util/bpf_lock_contention.c
> +++ b/tools/perf/util/bpf_lock_contention.c
> @@ -215,7 +215,7 @@ int lock_contention_read(struct lock_contention *con)
>  			break;
>  		}
>  
> -		if (verbose) {
> +		if (verbose > 0) {
>  			st->callstack = memdup(stack_trace, stack_size);
>  			if (st->callstack == NULL)
>  				break;
> diff --git a/tools/perf/util/dlfilter.c b/tools/perf/util/dlfilter.c
> index 54e4d4495e00..37beb7530288 100644
> --- a/tools/perf/util/dlfilter.c
> +++ b/tools/perf/util/dlfilter.c
> @@ -579,7 +579,7 @@ static void list_filters(const char *dirname)
>  		if (!get_filter_desc(dirname, entry->d_name, &desc, &long_desc))
>  			continue;
>  		printf("  %-36s %s\n", entry->d_name, desc ? desc : "");
> -		if (verbose) {
> +		if (verbose > 0) {
>  			char *p = long_desc;
>  			char *line;
>  


  reply	other threads:[~2022-12-20  7:44 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-20  3:56 [PATCH 0/3] Fixes for debug variables Yang Jihong
2022-12-20  3:57 ` [PATCH 1/3] perf tools: Set debug_peo_args and redirect_to_stderr to correct values in perf_quiet_option Yang Jihong
2022-12-20  7:35   ` Adrian Hunter
2022-12-20 18:17     ` Arnaldo Carvalho de Melo
2022-12-20  3:57 ` [PATCH 2/3] perf tools: Fix usage of the verbose variable Yang Jihong
2022-12-20  7:44   ` Adrian Hunter [this message]
2022-12-20  3:57 ` [PATCH 3/3] perf probe: Check -v and -q options in the right place Yang Jihong
2022-12-20 11:12   ` Adrian Hunter

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=fde42d64-390c-53c2-b5f0-5441366dbaf1@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=acme@kernel.org \
    --cc=ak@linux.intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=carsten.haitzler@arm.com \
    --cc=irogers@google.com \
    --cc=jolsa@kernel.org \
    --cc=leo.yan@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=martin.lau@kernel.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    --cc=ravi.bangoria@amd.com \
    --cc=yangjihong1@huawei.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).