mempolicy: mPOL_PREFERRED cleanups for "local allocation"
[linux-2.6/mini2440.git] / include / asm-cris / tlbflush.h
blob20697e7ef4f2091d594bb187b512cba4f4b88017
1 #ifndef _CRIS_TLBFLUSH_H
2 #define _CRIS_TLBFLUSH_H
4 #include <linux/mm.h>
5 #include <asm/processor.h>
6 #include <asm/pgtable.h>
7 #include <asm/pgalloc.h>
9 /*
10 * TLB flushing (implemented in arch/cris/mm/tlb.c):
12 * - flush_tlb() flushes the current mm struct TLBs
13 * - flush_tlb_all() flushes all processes TLBs
14 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
15 * - flush_tlb_page(vma, vmaddr) flushes one page
16 * - flush_tlb_range(mm, start, end) flushes a range of pages
20 extern void __flush_tlb_all(void);
21 extern void __flush_tlb_mm(struct mm_struct *mm);
22 extern void __flush_tlb_page(struct vm_area_struct *vma,
23 unsigned long addr);
25 #ifdef CONFIG_SMP
26 extern void flush_tlb_all(void);
27 extern void flush_tlb_mm(struct mm_struct *mm);
28 extern void flush_tlb_page(struct vm_area_struct *vma,
29 unsigned long addr);
30 #else
31 #define flush_tlb_all __flush_tlb_all
32 #define flush_tlb_mm __flush_tlb_mm
33 #define flush_tlb_page __flush_tlb_page
34 #endif
36 static inline void flush_tlb_range(struct vm_area_struct * vma, unsigned long start, unsigned long end)
38 flush_tlb_mm(vma->vm_mm);
41 static inline void flush_tlb(void)
43 flush_tlb_mm(current->mm);
46 #define flush_tlb_kernel_range(start, end) flush_tlb_all()
48 #endif /* _CRIS_TLBFLUSH_H */