perf debug: Avoid setting 'quiet' to 'true' unnecessarily
authorYisheng Xie <xieyisheng1@huawei.com>
Tue, 13 Mar 2018 12:31:14 +0000 (20:31 +0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 16 Mar 2018 19:39:02 +0000 (16:39 -0300)
When using --quiet to disable messages, we will set the 'quiet' variable
to 'true' first, then check that variable to decide whether we need to
call perf_quiet_option(), so no need to set 'quiet' to 'true' once more
in perf_quiet_option().

Signed-off-by: Yisheng Xie <xieyisheng1@huawei.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1520944274-37001-2-git-send-email-xieyisheng1@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/debug.c

index f3a71db83947355136204b9e2425af21d7af8902..3d6459626c2af826dc8a4537c3b51bf95063f10c 100644 (file)
@@ -232,7 +232,6 @@ int perf_quiet_option(void)
                var++;
        }
 
-       quiet = true;
        return 0;
 }