tlbflush.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_TLBFLUSH_H
  6. #define __UM_TLBFLUSH_H
  7. #include <linux/mm.h>
  8. /*
  9. * TLB flushing:
  10. *
  11. * - flush_tlb() flushes the current mm struct TLBs
  12. * - flush_tlb_all() flushes all processes TLBs
  13. * - flush_tlb_mm(mm) flushes the specified mm context TLB's
  14. * - flush_tlb_page(vma, vmaddr) flushes one page
  15. * - flush_tlb_kernel_vm() flushes the kernel vm area
  16. * - flush_tlb_range(vma, start, end) flushes a range of pages
  17. * - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
  18. */
  19. extern void flush_tlb_all(void);
  20. extern void flush_tlb_mm(struct mm_struct *mm);
  21. extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
  22. unsigned long end);
  23. extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long address);
  24. extern void flush_tlb_kernel_vm(void);
  25. extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
  26. extern void __flush_tlb_one(unsigned long addr);
  27. static inline void flush_tlb_pgtables(struct mm_struct *mm,
  28. unsigned long start, unsigned long end)
  29. {
  30. }
  31. #endif