perf tools: Fix usage of the verbose variable
authorYang Jihong <yangjihong1@huawei.com>
Tue, 20 Dec 2022 03:57:01 +0000 (11:57 +0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 20 Dec 2022 18:16:33 +0000 (15:16 -0300)
commit7c0a6144f9a6a53b1cf2f78f09ca35d59d267f1e
treefc29eb2def3ec95743617173879c8e93d05c7ec3
parent188ac720d364035008a54d249cf47b4cc100f819
perf tools: Fix usage of the verbose variable

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)

Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Yang Jihong <yangjihong1@huawei.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Carsten Haitzler <carsten.haitzler@arm.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Martin KaFai Lau <martin.lau@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Link: https://lore.kernel.org/r/20221220035702.188413-3-yangjihong1@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-lock.c
tools/perf/builtin-record.c
tools/perf/builtin-script.c
tools/perf/builtin-stat.c
tools/perf/dlfilters/dlfilter-test-api-v0.c
tools/perf/tests/builtin-test.c
tools/perf/tests/dlfilter-test.c
tools/perf/util/bpf_lock_contention.c
tools/perf/util/dlfilter.c