1 /* include/asm-generic/tlb.h
3 * Generic TLB shootdown code
5 * Copyright 2001 Red Hat, Inc.
6 * Based on code from mm/memory.c Copyright Linus Torvalds and others.
8 * Copyright 2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
15 #ifndef _ASM_GENERIC__TLB_H
16 #define _ASM_GENERIC__TLB_H
18 #include <linux/swap.h>
19 #include <asm/pgalloc.h>
20 #include <asm/tlbflush.h>
22 #ifdef CONFIG_HAVE_RCU_TABLE_FREE
24 * Semi RCU freeing of the page directories.
26 * This is needed by some architectures to implement software pagetable walkers.
28 * gup_fast() and other software pagetable walkers do a lockless page-table
29 * walk and therefore needs some synchronization with the freeing of the page
30 * directories. The chosen means to accomplish that is by disabling IRQs over
33 * Architectures that use IPIs to flush TLBs will then automagically DTRT,
34 * since we unlink the page, flush TLBs, free the page. Since the disabling of
35 * IRQs delays the completion of the TLB flush we can never observe an already
38 * Architectures that do not have this (PPC) need to delay the freeing by some
39 * other means, this is that means.
41 * What we do is batch the freed directory pages (tables) and RCU free them.
42 * We use the sched RCU variant, as that guarantees that IRQ/preempt disabling
43 * holds off grace periods.
45 * However, in order to batch these pages we need to allocate storage, this
46 * allocation is deep inside the MM code and can thus easily fail on memory
47 * pressure. To guarantee progress we fall back to single table freeing, see
48 * the implementation of tlb_remove_table_one().
51 struct mmu_table_batch
{
57 #define MAX_TABLE_BATCH \
58 ((PAGE_SIZE - sizeof(struct mmu_table_batch)) / sizeof(void *))
60 extern void tlb_table_flush(struct mmu_gather
*tlb
);
61 extern void tlb_remove_table(struct mmu_gather
*tlb
, void *table
);
66 * If we can't allocate a page to make a big batch of page pointers
67 * to work on, then just handle a few from the on-stack structure.
69 #define MMU_GATHER_BUNDLE 8
71 struct mmu_gather_batch
{
72 struct mmu_gather_batch
*next
;
75 struct page
*pages
[0];
78 #define MAX_GATHER_BATCH \
79 ((PAGE_SIZE - sizeof(struct mmu_gather_batch)) / sizeof(void *))
82 * Limit the maximum number of mmu_gather batches to reduce a risk of soft
83 * lockups for non-preemptible kernels on huge machines when a lot of memory
84 * is zapped during unmapping.
85 * 10K pages freed at once should be safe even without a preemption point.
87 #define MAX_GATHER_BATCH_COUNT (10000UL/MAX_GATHER_BATCH)
89 /* struct mmu_gather is an opaque type used by the mm code for passing around
90 * any data needed by arch specific code for tlb_remove_page.
94 #ifdef CONFIG_HAVE_RCU_TABLE_FREE
95 struct mmu_table_batch
*batch
;
99 /* we are in the middle of an operation to clear
100 * a full mm and can make some optimizations */
101 unsigned int fullmm
: 1,
102 /* we have performed an operation which
103 * requires a complete flush of the tlb */
106 struct mmu_gather_batch
*active
;
107 struct mmu_gather_batch local
;
108 struct page
*__pages
[MMU_GATHER_BUNDLE
];
109 unsigned int batch_count
;
112 #define HAVE_GENERIC_MMU_GATHER
114 void tlb_gather_mmu(struct mmu_gather
*tlb
, struct mm_struct
*mm
, unsigned long start
, unsigned long end
);
115 void tlb_flush_mmu(struct mmu_gather
*tlb
);
116 void tlb_finish_mmu(struct mmu_gather
*tlb
, unsigned long start
,
118 int __tlb_remove_page(struct mmu_gather
*tlb
, struct page
*page
);
121 * Similar to __tlb_remove_page but will call tlb_flush_mmu() itself when
124 static inline void tlb_remove_page(struct mmu_gather
*tlb
, struct page
*page
)
126 if (!__tlb_remove_page(tlb
, page
))
130 static inline void __tlb_adjust_range(struct mmu_gather
*tlb
,
131 unsigned long address
)
133 tlb
->start
= min(tlb
->start
, address
);
134 tlb
->end
= max(tlb
->end
, address
+ PAGE_SIZE
);
137 static inline void __tlb_reset_range(struct mmu_gather
*tlb
)
140 tlb
->start
= tlb
->end
= ~0;
142 tlb
->start
= TASK_SIZE
;
148 * In the case of tlb vma handling, we can optimise these away in the
149 * case where we're doing a full MM flush. When we're doing a munmap,
150 * the vmas are adjusted to only cover the region to be torn down.
152 #ifndef tlb_start_vma
153 #define tlb_start_vma(tlb, vma) do { } while (0)
156 #define __tlb_end_vma(tlb, vma) \
158 if (!tlb->fullmm && tlb->end) { \
160 __tlb_reset_range(tlb); \
165 #define tlb_end_vma __tlb_end_vma
168 #ifndef __tlb_remove_tlb_entry
169 #define __tlb_remove_tlb_entry(tlb, ptep, address) do { } while (0)
173 * tlb_remove_tlb_entry - remember a pte unmapping for later tlb invalidation.
175 * Record the fact that pte's were really unmapped by updating the range,
176 * so we can later optimise away the tlb invalidate. This helps when
177 * userspace is unmapping already-unmapped pages, which happens quite a lot.
179 #define tlb_remove_tlb_entry(tlb, ptep, address) \
181 __tlb_adjust_range(tlb, address); \
182 __tlb_remove_tlb_entry(tlb, ptep, address); \
186 * tlb_remove_pmd_tlb_entry - remember a pmd mapping for later tlb invalidation
187 * This is a nop so far, because only x86 needs it.
189 #ifndef __tlb_remove_pmd_tlb_entry
190 #define __tlb_remove_pmd_tlb_entry(tlb, pmdp, address) do {} while (0)
193 #define tlb_remove_pmd_tlb_entry(tlb, pmdp, address) \
195 __tlb_adjust_range(tlb, address); \
196 __tlb_remove_pmd_tlb_entry(tlb, pmdp, address); \
199 #define pte_free_tlb(tlb, ptep, address) \
201 __tlb_adjust_range(tlb, address); \
202 __pte_free_tlb(tlb, ptep, address); \
205 #ifndef __ARCH_HAS_4LEVEL_HACK
206 #define pud_free_tlb(tlb, pudp, address) \
208 __tlb_adjust_range(tlb, address); \
209 __pud_free_tlb(tlb, pudp, address); \
213 #define pmd_free_tlb(tlb, pmdp, address) \
215 __tlb_adjust_range(tlb, address); \
216 __pmd_free_tlb(tlb, pmdp, address); \
219 #define tlb_migrate_finish(mm) do {} while (0)
221 #endif /* _ASM_GENERIC__TLB_H */
This page took 0.035251 seconds and 5 git commands to generate.