diff options
author | Peter Zijlstra <peterz@infradead.org> | 2018-09-19 04:50:17 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-09-27 14:39:40 -0400 |
commit | c6185b1f21a47af94617fde3af7e803817b522a9 (patch) | |
tree | 49e13ca1af03c9842c7ba2a3b4e6db30e69fbd69 | |
parent | 585948f4f695b07204702cfee0f828424af32aa7 (diff) |
x86/mm/cpa: Use flush_tlb_all()
Instead of open-coding it..
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Dave Hansen <dave.hansen@intel.com>
Cc: Bin Yang <bin.yang@intel.com>
Cc: Mark Gross <mark.gross@intel.com>
Link: https://lkml.kernel.org/r/20180919085947.831102058@infradead.org
-rw-r--r-- | arch/x86/mm/pageattr.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 4e55ded01be5..a22f6b71a308 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
@@ -285,16 +285,6 @@ static void cpa_flush_all(unsigned long cache) | |||
285 | on_each_cpu(__cpa_flush_all, (void *) cache, 1); | 285 | on_each_cpu(__cpa_flush_all, (void *) cache, 1); |
286 | } | 286 | } |
287 | 287 | ||
288 | static void __cpa_flush_range(void *arg) | ||
289 | { | ||
290 | /* | ||
291 | * We could optimize that further and do individual per page | ||
292 | * tlb invalidates for a low number of pages. Caveat: we must | ||
293 | * flush the high aliases on 64bit as well. | ||
294 | */ | ||
295 | __flush_tlb_all(); | ||
296 | } | ||
297 | |||
298 | static void cpa_flush_range(unsigned long start, int numpages, int cache) | 288 | static void cpa_flush_range(unsigned long start, int numpages, int cache) |
299 | { | 289 | { |
300 | unsigned int i, level; | 290 | unsigned int i, level; |
@@ -303,7 +293,7 @@ static void cpa_flush_range(unsigned long start, int numpages, int cache) | |||
303 | BUG_ON(irqs_disabled() && !early_boot_irqs_disabled); | 293 | BUG_ON(irqs_disabled() && !early_boot_irqs_disabled); |
304 | WARN_ON(PAGE_ALIGN(start) != start); | 294 | WARN_ON(PAGE_ALIGN(start) != start); |
305 | 295 | ||
306 | on_each_cpu(__cpa_flush_range, NULL, 1); | 296 | flush_tlb_all(); |
307 | 297 | ||
308 | if (!cache) | 298 | if (!cache) |
309 | return; | 299 | return; |