linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] memtest: use {READ,WRITE}_ONCE in memory scanning
@ 2024-03-12  8:04 Qiang Zhang
  2024-03-13 17:21 ` Nathan Chancellor
  0 siblings, 1 reply; 3+ messages in thread
From: Qiang Zhang @ 2024-03-12  8:04 UTC (permalink / raw)
  To: Andrew Morton, Nathan Chancellor, Nick Desaulniers,
	Bill Wendling, Justin Stitt
  Cc: linux-mm, linux-kernel, llvm, Qiang Zhang, Stable

memtest failed to find bad memory when compiled with clang. So use
{WRITE,READ}_ONCE  to access memory to avoid compiler over optimization.

Cc: <Stable@vger.kernel.org>
Signed-off-by: Qiang Zhang <qiang4.zhang@intel.com>
---
 mm/memtest.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/memtest.c b/mm/memtest.c
index 32f3e9dda837..c2c609c39119 100644
--- a/mm/memtest.c
+++ b/mm/memtest.c
@@ -51,10 +51,10 @@ static void __init memtest(u64 pattern, phys_addr_t start_phys, phys_addr_t size
 	last_bad = 0;
 
 	for (p = start; p < end; p++)
-		*p = pattern;
+		WRITE_ONCE(*p, pattern);
 
 	for (p = start; p < end; p++, start_phys_aligned += incr) {
-		if (*p == pattern)
+		if (READ_ONCE(*p) == pattern)
 			continue;
 		if (start_phys_aligned == last_bad + incr) {
 			last_bad += incr;
-- 
2.39.2



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-15  6:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-12  8:04 [PATCH] memtest: use {READ,WRITE}_ONCE in memory scanning Qiang Zhang
2024-03-13 17:21 ` Nathan Chancellor
2024-03-15  6:24   ` Zhang, Qiang4

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox