#include <linux/mm.h>
#include <linux/init.h>
#include <linux/mutex.h>
#include <linux/fs.h>
#include <linux/smp.h>
#include <linux/highmem.h>
#include <linux/module.h>
#include <asm/mmu_context.h>
#include <asm/cacheflush.h>
Go to the source code of this file.
|
| EXPORT_SYMBOL (__flush_wback_region) |
|
| EXPORT_SYMBOL (__flush_purge_region) |
|
| EXPORT_SYMBOL (__flush_invalidate_region) |
|
void | copy_to_user_page (struct vm_area_struct *vma, struct page *page, unsigned long vaddr, void *dst, const void *src, unsigned long len) |
|
void | copy_from_user_page (struct vm_area_struct *vma, struct page *page, unsigned long vaddr, void *dst, const void *src, unsigned long len) |
|
void | copy_user_highpage (struct page *to, struct page *from, unsigned long vaddr, struct vm_area_struct *vma) |
|
| EXPORT_SYMBOL (copy_user_highpage) |
|
void | clear_user_highpage (struct page *page, unsigned long vaddr) |
|
| EXPORT_SYMBOL (clear_user_highpage) |
|
void | __update_cache (struct vm_area_struct *vma, unsigned long address, pte_t pte) |
|
void | __flush_anon_page (struct page *page, unsigned long vmaddr) |
|
void | flush_cache_all (void) |
|
| EXPORT_SYMBOL (flush_cache_all) |
|
void | flush_cache_mm (struct mm_struct *mm) |
|
void | flush_cache_dup_mm (struct mm_struct *mm) |
|
void | flush_cache_page (struct vm_area_struct *vma, unsigned long addr, unsigned long pfn) |
|
void | flush_cache_range (struct vm_area_struct *vma, unsigned long start, unsigned long end) |
|
| EXPORT_SYMBOL (flush_cache_range) |
|
void | flush_dcache_page (struct page *page) |
|
| EXPORT_SYMBOL (flush_dcache_page) |
|
void | flush_icache_range (unsigned long start, unsigned long end) |
|
void | flush_icache_page (struct vm_area_struct *vma, struct page *page) |
|
void | flush_cache_sigtramp (unsigned long address) |
|
void __init | cpu_cache_init (void) |
|
void flush_cache_sigtramp |
( |
unsigned long |
address | ) |
|
void flush_icache_range |
( |
unsigned long |
start, |
|
|
unsigned long |
end |
|
) |
| |
flush_icache_range - Globally flush dcache and invalidate icache for region : The starting virtual address of the region. : The ending virtual address of the region.
This is used by the kernel to globally flush some code it has just written from the dcache back to RAM and then to globally invalidate the icache over that region so that that code can be run on all CPUs in the system.
Definition at line 222 of file cache.c.