Skip to content

Commit 489338a

Browse files
GustavoARSilvaacmel
authored andcommitted
perf tests evsel-tp-sched: Fix bitwise operator
Notice that the use of the bitwise OR operator '|' always leads to true in this particular case, which seems a bit suspicious due to the context in which this expression is being used. Fix this by using bitwise AND operator '&' instead. This bug was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: stable@vger.kernel.org Fixes: 6a6cd11 ("perf test: Add test for the sched tracepoint format fields") Link: http://lkml.kernel.org/r/20190122233439.GA5868@embeddedor Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 9dff0aa commit 489338a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/tests/evsel-tp-sched.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ static int perf_evsel__test_field(struct perf_evsel *evsel, const char *name,
1717
return -1;
1818
}
1919

20-
is_signed = !!(field->flags | TEP_FIELD_IS_SIGNED);
20+
is_signed = !!(field->flags & TEP_FIELD_IS_SIGNED);
2121
if (should_be_signed && !is_signed) {
2222
pr_debug("%s: \"%s\" signedness(%d) is wrong, should be %d\n",
2323
evsel->name, name, is_signed, should_be_signed);

0 commit comments

Comments
 (0)