]> Git Repo - linux.git/commit
kasan: add compiler barriers to KUNIT_EXPECT_KASAN_FAIL
authorAndrey Konovalov <[email protected]>
Wed, 24 Feb 2021 20:05:34 +0000 (12:05 -0800)
committerLinus Torvalds <[email protected]>
Wed, 24 Feb 2021 21:38:31 +0000 (13:38 -0800)
commit2e4bde6a1e3a3feb8511685b8c97be668728eefb
treef8decf829afbdffe9c7dbf096f96a9d4917172be
parent5d92bdffd2d53f98de683229c0ad7d028703fdba
kasan: add compiler barriers to KUNIT_EXPECT_KASAN_FAIL

It might not be obvious to the compiler that the expression must be
executed between writing and reading to fail_data. In this case, the
compiler might reorder or optimize away some of the accesses, and
the tests will fail.

Add compiler barriers around the expression in KUNIT_EXPECT_KASAN_FAIL
and use READ/WRITE_ONCE() for accessing fail_data fields.

Link: https://linux-review.googlesource.com/id/I046079f48641a1d36fe627fc8827a9249102fd50
Link: https://lkml.kernel.org/r/6f11596f367d8ae8f71d800351e9a5d91eda19f6.1610733117.git.andreyknvl@google.com
Signed-off-by: Andrey Konovalov <[email protected]>
Reviewed-by: Marco Elver <[email protected]>
Reviewed-by: Alexander Potapenko <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: Branislav Rankov <[email protected]>
Cc: Catalin Marinas <[email protected]>
Cc: Dmitry Vyukov <[email protected]>
Cc: Evgenii Stepanov <[email protected]>
Cc: Kevin Brodsky <[email protected]>
Cc: Peter Collingbourne <[email protected]>
Cc: Vincenzo Frascino <[email protected]>
Cc: Will Deacon <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
lib/test_kasan.c
mm/kasan/report.c
This page took 0.047781 seconds and 4 git commands to generate.