mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [patch]pageattr: cache flush before tlb flush
@ 2008-08-18  2:27 Shaohua Li
  2008-08-19  5:09 ` H. Peter Anvin
  2008-08-19  6:38 ` Andi Kleen
  0 siblings, 2 replies; 4+ messages in thread
From: Shaohua Li @ 2008-08-18  2:27 UTC (permalink / raw)
  To: lkml; +Cc: Andrew Morton, Ingo Molnar, Pallipadi, Venkatesh

clflush uses a virtual address but cache line is physical indexed in
x86. In my understanding, clflush will do some pagetable walk, so doing
cache flush first should reduce some pagetable walk.

Signed-off-by: Shaohua Li <shaohua.li@intel.com>

diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
index f5f5154..d8b24df 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -168,10 +168,8 @@ static void cpa_flush_range(unsigned long start, int numpages, int cache)
 	BUG_ON(irqs_disabled());
 	WARN_ON(PAGE_ALIGN(start) != start);
 
-	on_each_cpu(__cpa_flush_range, NULL, 1);
-
 	if (!cache)
-		return;
+		goto tlb_flush;
 
 	/*
 	 * We only need to flush on one CPU,
@@ -188,6 +186,9 @@ static void cpa_flush_range(unsigned long start, int numpages, int cache)
 		if (pte && (pte_val(*pte) & _PAGE_PRESENT))
 			clflush_cache_range((void *) addr, PAGE_SIZE);
 	}
+
+tlb_flush:
+	on_each_cpu(__cpa_flush_range, NULL, 1);
 }
 
 /*



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

end of thread, other threads:[~2008-08-19  6:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-18  2:27 [patch]pageattr: cache flush before tlb flush Shaohua Li
2008-08-19  5:09 ` H. Peter Anvin
2008-08-19  5:24   ` Li, Shaohua
2008-08-19  6:38 ` Andi Kleen

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

Powered by JetHome