diff options
| author | Alexander Potapenko <[email protected]> | 2023-03-03 15:14:31 +0100 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2023-03-28 16:20:11 -0700 |
| commit | d340292553ab48d32d3e768bbb1d11fb942fe02e (patch) | |
| tree | 08e9bdb7d3ac0c7554d062808ccf1ffe84cf4774 /tools/perf/scripts/python | |
| parent | 6dc4bd4e2fe395f8c9d5d0892e45ff7fed5c66f3 (diff) | |
kmsan: another take at fixing memcpy tests
commit 5478afc55a21 ("kmsan: fix memcpy tests") uses OPTIMIZER_HIDE_VAR()
to hide the uninitialized var from the compiler optimizations.
However OPTIMIZER_HIDE_VAR(uninit) enforces an immediate check of @uninit,
so memcpy tests did not actually check the behavior of memcpy(), because
they always contained a KMSAN report.
Replace OPTIMIZER_HIDE_VAR() with a file-local macro that just clobbers
the memory with a barrier(), and add a test case for memcpy() that does
not expect an error report.
Also reflow kmsan_test.c with clang-format.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Alexander Potapenko <[email protected]>
Reviewed-by: Marco Elver <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: Geert Uytterhoeven <[email protected]>
Cc: Helge Deller <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Tetsuo Handa <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions