mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 21:52:04 +00:00
x86: cpa: move clflush_cache_range()
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
e64c8aa0c5
commit
e81d5dc41b
@ -9,14 +9,6 @@
|
||||
#include <linux/slab.h>
|
||||
#include <linux/mm.h>
|
||||
|
||||
void clflush_cache_range(void *addr, int size)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < size; i += boot_cpu_data.x86_clflush_size)
|
||||
clflush(addr+i);
|
||||
}
|
||||
|
||||
#include <asm/processor.h>
|
||||
#include <asm/tlbflush.h>
|
||||
#include <asm/sections.h>
|
||||
@ -290,6 +282,14 @@ int change_page_attr(struct page *page, int numpages, pgprot_t prot)
|
||||
}
|
||||
EXPORT_SYMBOL(change_page_attr);
|
||||
|
||||
void clflush_cache_range(void *addr, int size)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < size; i += boot_cpu_data.x86_clflush_size)
|
||||
clflush(addr+i);
|
||||
}
|
||||
|
||||
static void flush_kernel_map(void *arg)
|
||||
{
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user