tlb.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* asm-generic/tlb.h
  2.  *
  3.  * Generic TLB shootdown code
  4.  *
  5.  * Copyright 2001 Red Hat, Inc.
  6.  * Based on code from mm/memory.c Copyright Linus Torvalds and others.
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version
  11.  * 2 of the License, or (at your option) any later version.
  12.  */
  13. #ifndef _ASM_GENERIC__TLB_H
  14. #define _ASM_GENERIC__TLB_H
  15. #include <linux/config.h>
  16. #ifdef CONFIG_SMP
  17. /* aim for something that fits in the L1 cache */
  18. #define FREE_PTE_NR 508
  19. /* mmu_gather_t is an opaque type used by the mm code for passing around any
  20.  * data needed by arch specific code for tlb_remove_page.  This structure can
  21.  * be per-CPU or per-MM as the page table lock is held for the duration of TLB
  22.  * shootdown.
  23.  */
  24. typedef struct free_pte_ctx {
  25. struct mm_struct *mm;
  26. unsigned long nr; /* set to ~0UL means fast mode */
  27. unsigned long start_addr, end_addr;
  28. pte_t ptes[FREE_PTE_NR];
  29. } mmu_gather_t;
  30. /* Users of the generic TLB shootdown code must declare this storage space. */
  31. extern mmu_gather_t mmu_gathers[NR_CPUS];
  32. /* tlb_gather_mmu
  33.  * Return a pointer to an initialized mmu_gather_t.
  34.  */
  35. static inline mmu_gather_t *tlb_gather_mmu(struct mm_struct *mm)
  36. {
  37. mmu_gather_t *tlb = &mmu_gathers[smp_processor_id()];
  38. tlb->mm = mm;
  39. /* Use fast mode if there is only one user of this mm (this process) */
  40. tlb->nr = (atomic_read(&(mm)->mm_users) == 1) ? ~0UL : 0UL;
  41. return tlb;
  42. }
  43. /* void tlb_remove_page(mmu_gather_t *tlb, pte_t *ptep, unsigned long addr)
  44.  * Must perform the equivalent to __free_pte(pte_get_and_clear(ptep)), while
  45.  * handling the additional races in SMP caused by other CPUs caching valid
  46.  * mappings in their TLBs.
  47.  */
  48. #define tlb_remove_page(ctxp, pte, addr) do {
  49. /* Handle the common case fast, first. */
  50. if ((ctxp)->nr == ~0UL) {
  51. pte_t __pte = *(pte);
  52. pte_clear(pte);
  53. __free_pte(__pte);
  54. break;
  55. }
  56. if (!(ctxp)->nr) 
  57. (ctxp)->start_addr = (addr);
  58. (ctxp)->ptes[(ctxp)->nr++] = ptep_get_and_clear(pte);
  59. (ctxp)->end_addr = (addr) + PAGE_SIZE;
  60. if ((ctxp)->nr >= FREE_PTE_NR)
  61. tlb_finish_mmu((ctxp), 0, 0);
  62. } while (0)
  63. /* tlb_finish_mmu
  64.  * Called at the end of the shootdown operation to free up any resources
  65.  * that were required.  The page talbe lock is still held at this point.
  66.  */
  67. static inline void tlb_finish_mmu(struct free_pte_ctx *ctx, unsigned long start, unsigned long end)
  68. {
  69. unsigned long i, nr;
  70. /* Handle the fast case first. */
  71. if (ctx->nr == ~0UL) {
  72. flush_tlb_range(ctx->mm, start, end);
  73. return;
  74. }
  75. nr = ctx->nr;
  76. ctx->nr = 0;
  77. if (nr)
  78. flush_tlb_range(ctx->mm, ctx->start_addr, ctx->end_addr);
  79. for (i=0; i < nr; i++) {
  80. pte_t pte = ctx->ptes[i];
  81. __free_pte(pte);
  82. }
  83. }
  84. #else
  85. /* The uniprocessor functions are quite simple and are inline macros in an
  86.  * attempt to get gcc to generate optimal code since this code is run on each
  87.  * page in a process at exit.
  88.  */
  89. typedef struct mm_struct mmu_gather_t;
  90. #define tlb_gather_mmu(mm) (mm)
  91. #define tlb_finish_mmu(tlb, start, end) flush_tlb_range(tlb, start, end)
  92. #define tlb_remove_page(tlb, ptep, addr) do {
  93. pte_t __pte = *(ptep);
  94. pte_clear(ptep);
  95. __free_pte(__pte);
  96. } while (0)
  97. #endif
  98. #endif /* _ASM_GENERIC__TLB_H */