public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [x86] Fix prefetch instruction
@ 2011-08-05 16:18 Christoph Lameter
  2011-08-05 20:13 ` H. Peter Anvin
  0 siblings, 1 reply; 6+ messages in thread
From: Christoph Lameter @ 2011-08-05 16:18 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: linux-kernel, Andi Kleen, H. Peter Anvin

The prefetchnta instruction used for prefetching on x86 is a special instruction
used for streaming that is usually used to avoid polluting the l2 and l3 caches.
The cacheline will be evicted rapidly.

What we need is a prefetch that puts the cacheline in all levels of the cache hierachy instead.
Change the instruction to do that.

Acked-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Christoph Lameter <cl@linux.com>


---
 arch/x86/include/asm/processor.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/arch/x86/include/asm/processor.h
===================================================================
--- linux-2.6.orig/arch/x86/include/asm/processor.h	2011-08-04 13:12:39.000000000 -0500
+++ linux-2.6/arch/x86/include/asm/processor.h	2011-08-04 13:16:31.000000000 -0500
@@ -829,7 +829,7 @@ extern char			ignore_fpu_irq;
 static inline void prefetch(const void *x)
 {
 	alternative_input(BASE_PREFETCH,
-			  "prefetchnta (%1)",
+			  "prefetcht0 (%1)",
 			  X86_FEATURE_XMM,
 			  "r" (x));
 }

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

end of thread, other threads:[~2011-08-05 23:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-05 16:18 [x86] Fix prefetch instruction Christoph Lameter
2011-08-05 20:13 ` H. Peter Anvin
2011-08-05 21:10   ` Christoph Lameter
2011-08-05 21:22     ` H. Peter Anvin
2011-08-05 23:32       ` Christoph Lameter
2011-08-05 23:53         ` H. Peter Anvin

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