Skip to content

Commit 82634d7

Browse files
zhangqiang4akpm00
authored andcommitted
memtest: use {READ,WRITE}_ONCE in memory scanning
memtest failed to find bad memory when compiled with clang. So use {WRITE,READ}_ONCE to access memory to avoid compiler over optimization. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Qiang Zhang <[email protected]> Cc: Bill Wendling <[email protected]> Cc: Justin Stitt <[email protected]> Cc: Nathan Chancellor <[email protected]> Cc: Nick Desaulniers <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent cd197c3 commit 82634d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mm/memtest.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ static void __init memtest(u64 pattern, phys_addr_t start_phys, phys_addr_t size
5151
last_bad = 0;
5252

5353
for (p = start; p < end; p++)
54-
*p = pattern;
54+
WRITE_ONCE(*p, pattern);
5555

5656
for (p = start; p < end; p++, start_phys_aligned += incr) {
57-
if (*p == pattern)
57+
if (READ_ONCE(*p) == pattern)
5858
continue;
5959
if (start_phys_aligned == last_bad + incr) {
6060
last_bad += incr;

0 commit comments

Comments
 (0)