2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #ifndef __UM_TLBFLUSH_H
7 #define __UM_TLBFLUSH_H
10 #include "choose-mode.h"
15 * - flush_tlb() flushes the current mm struct TLBs
16 * - flush_tlb_all() flushes all processes TLBs
17 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
18 * - flush_tlb_page(vma, vmaddr) flushes one page
19 * - flush_tlb_kernel_vm() flushes the kernel vm area
20 * - flush_tlb_range(vma, start, end) flushes a range of pages
21 * - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
24 extern void flush_tlb_all(void);
25 extern void flush_tlb_mm(struct mm_struct
*mm
);
26 extern void flush_tlb_range(struct vm_area_struct
*vma
, unsigned long start
,
28 extern void flush_tlb_page_skas(struct vm_area_struct
*vma
,
29 unsigned long address
);
31 static inline void flush_tlb_page(struct vm_area_struct
*vma
,
32 unsigned long address
)
36 CHOOSE_MODE(flush_tlb_range(vma
, address
, address
+ PAGE_SIZE
),
37 flush_tlb_page_skas(vma
, address
));
40 extern void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long vmaddr
);
41 extern void flush_tlb_kernel_vm(void);
42 extern void flush_tlb_kernel_range(unsigned long start
, unsigned long end
);
43 extern void __flush_tlb_one(unsigned long addr
);
45 static inline void flush_tlb_pgtables(struct mm_struct
*mm
,
46 unsigned long start
, unsigned long end
)