Merge commit 'v2.6.27-rc7' into x86/pebs
[deliverable/linux.git] / arch / x86 / mm / pgtable.c
CommitLineData
4f76cd38
JF
1#include <linux/mm.h>
2#include <asm/pgalloc.h>
ee5aa8d3 3#include <asm/pgtable.h>
4f76cd38 4#include <asm/tlb.h>
a1d5a869 5#include <asm/fixmap.h>
4f76cd38
JF
6
7pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
8{
9 return (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO);
10}
11
12pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
13{
14 struct page *pte;
15
16#ifdef CONFIG_HIGHPTE
17 pte = alloc_pages(GFP_KERNEL|__GFP_HIGHMEM|__GFP_REPEAT|__GFP_ZERO, 0);
18#else
19 pte = alloc_pages(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO, 0);
20#endif
21 if (pte)
22 pgtable_page_ctor(pte);
23 return pte;
24}
25
397f687a
JF
26void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte)
27{
28 pgtable_page_dtor(pte);
6944a9c8 29 paravirt_release_pte(page_to_pfn(pte));
397f687a
JF
30 tlb_remove_page(tlb, pte);
31}
32
170fdff7
JF
33#if PAGETABLE_LEVELS > 2
34void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd)
35{
6944a9c8 36 paravirt_release_pmd(__pa(pmd) >> PAGE_SHIFT);
170fdff7
JF
37 tlb_remove_page(tlb, virt_to_page(pmd));
38}
5a5f8f42
JF
39
40#if PAGETABLE_LEVELS > 3
41void __pud_free_tlb(struct mmu_gather *tlb, pud_t *pud)
42{
2761fa09 43 paravirt_release_pud(__pa(pud) >> PAGE_SHIFT);
5a5f8f42
JF
44 tlb_remove_page(tlb, virt_to_page(pud));
45}
46#endif /* PAGETABLE_LEVELS > 3 */
170fdff7
JF
47#endif /* PAGETABLE_LEVELS > 2 */
48
4f76cd38
JF
49static inline void pgd_list_add(pgd_t *pgd)
50{
51 struct page *page = virt_to_page(pgd);
4f76cd38 52
4f76cd38 53 list_add(&page->lru, &pgd_list);
4f76cd38
JF
54}
55
56static inline void pgd_list_del(pgd_t *pgd)
57{
58 struct page *page = virt_to_page(pgd);
4f76cd38 59
4f76cd38 60 list_del(&page->lru);
4f76cd38
JF
61}
62
4f76cd38 63#define UNSHARED_PTRS_PER_PGD \
68db065c 64 (SHARED_KERNEL_PMD ? KERNEL_PGD_BOUNDARY : PTRS_PER_PGD)
4f76cd38
JF
65
66static void pgd_ctor(void *p)
67{
68 pgd_t *pgd = p;
4f76cd38
JF
69
70 /* If the pgd points to a shared pagetable level (either the
71 ptes in non-PAE, or shared PMD in PAE), then just copy the
72 references from swapper_pg_dir. */
73 if (PAGETABLE_LEVELS == 2 ||
85958b46
JF
74 (PAGETABLE_LEVELS == 3 && SHARED_KERNEL_PMD) ||
75 PAGETABLE_LEVELS == 4) {
68db065c
JF
76 clone_pgd_range(pgd + KERNEL_PGD_BOUNDARY,
77 swapper_pg_dir + KERNEL_PGD_BOUNDARY,
4f76cd38 78 KERNEL_PGD_PTRS);
6944a9c8
JF
79 paravirt_alloc_pmd_clone(__pa(pgd) >> PAGE_SHIFT,
80 __pa(swapper_pg_dir) >> PAGE_SHIFT,
68db065c 81 KERNEL_PGD_BOUNDARY,
6944a9c8 82 KERNEL_PGD_PTRS);
4f76cd38
JF
83 }
84
85 /* list required to sync kernel mapping updates */
86 if (!SHARED_KERNEL_PMD)
87 pgd_list_add(pgd);
4f76cd38
JF
88}
89
90static void pgd_dtor(void *pgd)
91{
92 unsigned long flags; /* can be called from interrupt context */
93
94 if (SHARED_KERNEL_PMD)
95 return;
96
97 spin_lock_irqsave(&pgd_lock, flags);
98 pgd_list_del(pgd);
99 spin_unlock_irqrestore(&pgd_lock, flags);
100}
101
85958b46
JF
102/*
103 * List of all pgd's needed for non-PAE so it can invalidate entries
104 * in both cached and uncached pgd's; not needed for PAE since the
105 * kernel pmd is shared. If PAE were not to share the pmd a similar
106 * tactic would be needed. This is essentially codepath-based locking
107 * against pageattr.c; it is the unique case in which a valid change
108 * of kernel pagetables can't be lazily synchronized by vmalloc faults.
109 * vmalloc faults work because attached pagetables are never freed.
110 * -- wli
111 */
112
4f76cd38 113#ifdef CONFIG_X86_PAE
d8d5900e
JF
114/*
115 * In PAE mode, we need to do a cr3 reload (=tlb flush) when
116 * updating the top-level pagetable entries to guarantee the
117 * processor notices the update. Since this is expensive, and
118 * all 4 top-level entries are used almost immediately in a
119 * new process's life, we just pre-populate them here.
120 *
121 * Also, if we're in a paravirt environment where the kernel pmd is
122 * not shared between pagetables (!SHARED_KERNEL_PMDS), we allocate
123 * and initialize the kernel pmds here.
124 */
125#define PREALLOCATED_PMDS UNSHARED_PTRS_PER_PGD
126
127void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd)
128{
129 paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT);
130
131 /* Note: almost everything apart from _PAGE_PRESENT is
132 reserved at the pmd (PDPT) level. */
133 set_pud(pudp, __pud(__pa(pmd) | _PAGE_PRESENT));
134
135 /*
136 * According to Intel App note "TLBs, Paging-Structure Caches,
137 * and Their Invalidation", April 2007, document 317080-001,
138 * section 8.1: in PAE mode we explicitly have to flush the
139 * TLB via cr3 if the top-level pgd is changed...
140 */
141 if (mm == current->active_mm)
142 write_cr3(read_cr3());
143}
144#else /* !CONFIG_X86_PAE */
145
146/* No need to prepopulate any pagetable entries in non-PAE modes. */
147#define PREALLOCATED_PMDS 0
148
149#endif /* CONFIG_X86_PAE */
150
151static void free_pmds(pmd_t *pmds[])
152{
153 int i;
154
155 for(i = 0; i < PREALLOCATED_PMDS; i++)
156 if (pmds[i])
157 free_page((unsigned long)pmds[i]);
158}
159
160static int preallocate_pmds(pmd_t *pmds[])
161{
162 int i;
163 bool failed = false;
164
165 for(i = 0; i < PREALLOCATED_PMDS; i++) {
166 pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
167 if (pmd == NULL)
168 failed = true;
169 pmds[i] = pmd;
170 }
171
172 if (failed) {
173 free_pmds(pmds);
174 return -ENOMEM;
175 }
176
177 return 0;
178}
179
4f76cd38
JF
180/*
181 * Mop up any pmd pages which may still be attached to the pgd.
182 * Normally they will be freed by munmap/exit_mmap, but any pmd we
183 * preallocate which never got a corresponding vma will need to be
184 * freed manually.
185 */
186static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp)
187{
188 int i;
189
d8d5900e 190 for(i = 0; i < PREALLOCATED_PMDS; i++) {
4f76cd38
JF
191 pgd_t pgd = pgdp[i];
192
193 if (pgd_val(pgd) != 0) {
194 pmd_t *pmd = (pmd_t *)pgd_page_vaddr(pgd);
195
196 pgdp[i] = native_make_pgd(0);
197
6944a9c8 198 paravirt_release_pmd(pgd_val(pgd) >> PAGE_SHIFT);
4f76cd38
JF
199 pmd_free(mm, pmd);
200 }
201 }
202}
203
d8d5900e 204static void pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmds[])
4f76cd38
JF
205{
206 pud_t *pud;
207 unsigned long addr;
208 int i;
209
cf3e5050
JF
210 if (PREALLOCATED_PMDS == 0) /* Work around gcc-3.4.x bug */
211 return;
212
4f76cd38 213 pud = pud_offset(pgd, 0);
4f76cd38 214
d8d5900e
JF
215 for (addr = i = 0; i < PREALLOCATED_PMDS;
216 i++, pud++, addr += PUD_SIZE) {
217 pmd_t *pmd = pmds[i];
4f76cd38 218
68db065c 219 if (i >= KERNEL_PGD_BOUNDARY)
4f76cd38
JF
220 memcpy(pmd, (pmd_t *)pgd_page_vaddr(swapper_pg_dir[i]),
221 sizeof(pmd_t) * PTRS_PER_PMD);
222
223 pud_populate(mm, pud, pmd);
224 }
4f76cd38 225}
1ec1fe73 226
d8d5900e 227pgd_t *pgd_alloc(struct mm_struct *mm)
1ec1fe73 228{
d8d5900e
JF
229 pgd_t *pgd;
230 pmd_t *pmds[PREALLOCATED_PMDS];
231 unsigned long flags;
1ec1fe73 232
d8d5900e
JF
233 pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
234
235 if (pgd == NULL)
236 goto out;
237
238 mm->pgd = pgd;
239
240 if (preallocate_pmds(pmds) != 0)
241 goto out_free_pgd;
242
243 if (paravirt_pgd_alloc(mm) != 0)
244 goto out_free_pmds;
1ec1fe73
IM
245
246 /*
d8d5900e
JF
247 * Make sure that pre-populating the pmds is atomic with
248 * respect to anything walking the pgd_list, so that they
249 * never see a partially populated pgd.
1ec1fe73 250 */
d8d5900e 251 spin_lock_irqsave(&pgd_lock, flags);
4f76cd38 252
d8d5900e
JF
253 pgd_ctor(pgd);
254 pgd_prepopulate_pmd(mm, pgd, pmds);
4f76cd38 255
d8d5900e 256 spin_unlock_irqrestore(&pgd_lock, flags);
4f76cd38
JF
257
258 return pgd;
d8d5900e
JF
259
260out_free_pmds:
261 free_pmds(pmds);
262out_free_pgd:
263 free_page((unsigned long)pgd);
264out:
265 return NULL;
4f76cd38
JF
266}
267
268void pgd_free(struct mm_struct *mm, pgd_t *pgd)
269{
270 pgd_mop_up_pmds(mm, pgd);
271 pgd_dtor(pgd);
eba0045f 272 paravirt_pgd_free(mm, pgd);
4f76cd38
JF
273 free_page((unsigned long)pgd);
274}
ee5aa8d3
JF
275
276int ptep_set_access_flags(struct vm_area_struct *vma,
277 unsigned long address, pte_t *ptep,
278 pte_t entry, int dirty)
279{
280 int changed = !pte_same(*ptep, entry);
281
282 if (changed && dirty) {
283 *ptep = entry;
284 pte_update_defer(vma->vm_mm, address, ptep);
285 flush_tlb_page(vma, address);
286 }
287
288 return changed;
289}
f9fbf1a3
JF
290
291int ptep_test_and_clear_young(struct vm_area_struct *vma,
292 unsigned long addr, pte_t *ptep)
293{
294 int ret = 0;
295
296 if (pte_young(*ptep))
297 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
48e23957 298 (unsigned long *) &ptep->pte);
f9fbf1a3
JF
299
300 if (ret)
301 pte_update(vma->vm_mm, addr, ptep);
302
303 return ret;
304}
c20311e1
JF
305
306int ptep_clear_flush_young(struct vm_area_struct *vma,
307 unsigned long address, pte_t *ptep)
308{
309 int young;
310
311 young = ptep_test_and_clear_young(vma, address, ptep);
312 if (young)
313 flush_tlb_page(vma, address);
314
315 return young;
316}
7c7e6e07
JF
317
318int fixmaps_set;
319
aeaaa59c 320void __native_set_fixmap(enum fixed_addresses idx, pte_t pte)
7c7e6e07
JF
321{
322 unsigned long address = __fix_to_virt(idx);
323
324 if (idx >= __end_of_fixed_addresses) {
325 BUG();
326 return;
327 }
aeaaa59c 328 set_pte_vaddr(address, pte);
7c7e6e07
JF
329 fixmaps_set++;
330}
aeaaa59c
JF
331
332void native_set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t flags)
333{
334 __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags));
335}
This page took 0.084557 seconds and 5 git commands to generate.