GNU Linux-libre 4.4.283-gnu1
[releases.git] / include / asm-generic / pgtable.h
1 #ifndef _ASM_GENERIC_PGTABLE_H
2 #define _ASM_GENERIC_PGTABLE_H
3
4 #ifndef __ASSEMBLY__
5 #ifdef CONFIG_MMU
6
7 #include <linux/mm_types.h>
8 #include <linux/bug.h>
9 #include <linux/errno.h>
10
11 #if 4 - defined(__PAGETABLE_PUD_FOLDED) - defined(__PAGETABLE_PMD_FOLDED) != \
12         CONFIG_PGTABLE_LEVELS
13 #error CONFIG_PGTABLE_LEVELS is not consistent with __PAGETABLE_{PUD,PMD}_FOLDED
14 #endif
15
16 /*
17  * On almost all architectures and configurations, 0 can be used as the
18  * upper ceiling to free_pgtables(): on many architectures it has the same
19  * effect as using TASK_SIZE.  However, there is one configuration which
20  * must impose a more careful limit, to avoid freeing kernel pgtables.
21  */
22 #ifndef USER_PGTABLES_CEILING
23 #define USER_PGTABLES_CEILING   0UL
24 #endif
25
26 #ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
27 extern int ptep_set_access_flags(struct vm_area_struct *vma,
28                                  unsigned long address, pte_t *ptep,
29                                  pte_t entry, int dirty);
30 #endif
31
32 #ifndef __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
33 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
34 extern int pmdp_set_access_flags(struct vm_area_struct *vma,
35                                  unsigned long address, pmd_t *pmdp,
36                                  pmd_t entry, int dirty);
37 #else
38 static inline int pmdp_set_access_flags(struct vm_area_struct *vma,
39                                         unsigned long address, pmd_t *pmdp,
40                                         pmd_t entry, int dirty)
41 {
42         BUILD_BUG();
43         return 0;
44 }
45 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
46 #endif
47
48 #ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
49 static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
50                                             unsigned long address,
51                                             pte_t *ptep)
52 {
53         pte_t pte = *ptep;
54         int r = 1;
55         if (!pte_young(pte))
56                 r = 0;
57         else
58                 set_pte_at(vma->vm_mm, address, ptep, pte_mkold(pte));
59         return r;
60 }
61 #endif
62
63 #ifndef __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
64 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
65 static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
66                                             unsigned long address,
67                                             pmd_t *pmdp)
68 {
69         pmd_t pmd = *pmdp;
70         int r = 1;
71         if (!pmd_young(pmd))
72                 r = 0;
73         else
74                 set_pmd_at(vma->vm_mm, address, pmdp, pmd_mkold(pmd));
75         return r;
76 }
77 #else
78 static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
79                                             unsigned long address,
80                                             pmd_t *pmdp)
81 {
82         BUILD_BUG();
83         return 0;
84 }
85 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
86 #endif
87
88 #ifndef __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
89 int ptep_clear_flush_young(struct vm_area_struct *vma,
90                            unsigned long address, pte_t *ptep);
91 #endif
92
93 #ifndef __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH
94 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
95 extern int pmdp_clear_flush_young(struct vm_area_struct *vma,
96                                   unsigned long address, pmd_t *pmdp);
97 #else
98 /*
99  * Despite relevant to THP only, this API is called from generic rmap code
100  * under PageTransHuge(), hence needs a dummy implementation for !THP
101  */
102 static inline int pmdp_clear_flush_young(struct vm_area_struct *vma,
103                                          unsigned long address, pmd_t *pmdp)
104 {
105         BUILD_BUG();
106         return 0;
107 }
108 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
109 #endif
110
111 #ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR
112 static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
113                                        unsigned long address,
114                                        pte_t *ptep)
115 {
116         pte_t pte = *ptep;
117         pte_clear(mm, address, ptep);
118         return pte;
119 }
120 #endif
121
122 #ifndef __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR
123 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
124 static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm,
125                                             unsigned long address,
126                                             pmd_t *pmdp)
127 {
128         pmd_t pmd = *pmdp;
129         pmd_clear(pmdp);
130         return pmd;
131 }
132 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
133 #endif
134
135 #ifndef __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR_FULL
136 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
137 static inline pmd_t pmdp_huge_get_and_clear_full(struct mm_struct *mm,
138                                             unsigned long address, pmd_t *pmdp,
139                                             int full)
140 {
141         return pmdp_huge_get_and_clear(mm, address, pmdp);
142 }
143 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
144 #endif
145
146 #ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
147 static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
148                                             unsigned long address, pte_t *ptep,
149                                             int full)
150 {
151         pte_t pte;
152         pte = ptep_get_and_clear(mm, address, ptep);
153         return pte;
154 }
155 #endif
156
157 /*
158  * Some architectures may be able to avoid expensive synchronization
159  * primitives when modifications are made to PTE's which are already
160  * not present, or in the process of an address space destruction.
161  */
162 #ifndef __HAVE_ARCH_PTE_CLEAR_NOT_PRESENT_FULL
163 static inline void pte_clear_not_present_full(struct mm_struct *mm,
164                                               unsigned long address,
165                                               pte_t *ptep,
166                                               int full)
167 {
168         pte_clear(mm, address, ptep);
169 }
170 #endif
171
172 #ifndef __HAVE_ARCH_PTEP_CLEAR_FLUSH
173 extern pte_t ptep_clear_flush(struct vm_area_struct *vma,
174                               unsigned long address,
175                               pte_t *ptep);
176 #endif
177
178 #ifndef __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH
179 extern pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma,
180                               unsigned long address,
181                               pmd_t *pmdp);
182 #endif
183
184 #ifndef __HAVE_ARCH_PTEP_SET_WRPROTECT
185 struct mm_struct;
186 static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long address, pte_t *ptep)
187 {
188         pte_t old_pte = *ptep;
189         set_pte_at(mm, address, ptep, pte_wrprotect(old_pte));
190 }
191 #endif
192
193 #ifndef __HAVE_ARCH_PMDP_SET_WRPROTECT
194 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
195 static inline void pmdp_set_wrprotect(struct mm_struct *mm,
196                                       unsigned long address, pmd_t *pmdp)
197 {
198         pmd_t old_pmd = *pmdp;
199         set_pmd_at(mm, address, pmdp, pmd_wrprotect(old_pmd));
200 }
201 #else
202 static inline void pmdp_set_wrprotect(struct mm_struct *mm,
203                                       unsigned long address, pmd_t *pmdp)
204 {
205         BUILD_BUG();
206 }
207 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
208 #endif
209
210 #ifndef __HAVE_ARCH_PMDP_SPLITTING_FLUSH
211 extern void pmdp_splitting_flush(struct vm_area_struct *vma,
212                                  unsigned long address, pmd_t *pmdp);
213 #endif
214
215 #ifndef pmdp_collapse_flush
216 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
217 extern pmd_t pmdp_collapse_flush(struct vm_area_struct *vma,
218                                  unsigned long address, pmd_t *pmdp);
219 #else
220 static inline pmd_t pmdp_collapse_flush(struct vm_area_struct *vma,
221                                         unsigned long address,
222                                         pmd_t *pmdp)
223 {
224         BUILD_BUG();
225         return *pmdp;
226 }
227 #define pmdp_collapse_flush pmdp_collapse_flush
228 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
229 #endif
230
231 #ifndef __HAVE_ARCH_PGTABLE_DEPOSIT
232 extern void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
233                                        pgtable_t pgtable);
234 #endif
235
236 #ifndef __HAVE_ARCH_PGTABLE_WITHDRAW
237 extern pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp);
238 #endif
239
240 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
241 /*
242  * This is an implementation of pmdp_establish() that is only suitable for an
243  * architecture that doesn't have hardware dirty/accessed bits. In this case we
244  * can't race with CPU which sets these bits and non-atomic aproach is fine.
245  */
246 static inline pmd_t generic_pmdp_establish(struct vm_area_struct *vma,
247                 unsigned long address, pmd_t *pmdp, pmd_t pmd)
248 {
249         pmd_t old_pmd = *pmdp;
250         set_pmd_at(vma->vm_mm, address, pmdp, pmd);
251         return old_pmd;
252 }
253 #endif
254
255 #ifndef __HAVE_ARCH_PMDP_INVALIDATE
256 extern void pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
257                             pmd_t *pmdp);
258 #endif
259
260 #ifndef __HAVE_ARCH_PTE_SAME
261 static inline int pte_same(pte_t pte_a, pte_t pte_b)
262 {
263         return pte_val(pte_a) == pte_val(pte_b);
264 }
265 #endif
266
267 #ifndef __HAVE_ARCH_PTE_UNUSED
268 /*
269  * Some architectures provide facilities to virtualization guests
270  * so that they can flag allocated pages as unused. This allows the
271  * host to transparently reclaim unused pages. This function returns
272  * whether the pte's page is unused.
273  */
274 static inline int pte_unused(pte_t pte)
275 {
276         return 0;
277 }
278 #endif
279
280 #ifndef __HAVE_ARCH_PMD_SAME
281 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
282 static inline int pmd_same(pmd_t pmd_a, pmd_t pmd_b)
283 {
284         return pmd_val(pmd_a) == pmd_val(pmd_b);
285 }
286 #else /* CONFIG_TRANSPARENT_HUGEPAGE */
287 static inline int pmd_same(pmd_t pmd_a, pmd_t pmd_b)
288 {
289         BUILD_BUG();
290         return 0;
291 }
292 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
293 #endif
294
295 #ifndef __HAVE_ARCH_PGD_OFFSET_GATE
296 #define pgd_offset_gate(mm, addr)       pgd_offset(mm, addr)
297 #endif
298
299 #ifndef __HAVE_ARCH_MOVE_PTE
300 #define move_pte(pte, prot, old_addr, new_addr) (pte)
301 #endif
302
303 #ifndef pte_accessible
304 # define pte_accessible(mm, pte)        ((void)(pte), 1)
305 #endif
306
307 #ifndef flush_tlb_fix_spurious_fault
308 #define flush_tlb_fix_spurious_fault(vma, address) flush_tlb_page(vma, address)
309 #endif
310
311 #ifndef pgprot_noncached
312 #define pgprot_noncached(prot)  (prot)
313 #endif
314
315 #ifndef pgprot_writecombine
316 #define pgprot_writecombine pgprot_noncached
317 #endif
318
319 #ifndef pgprot_writethrough
320 #define pgprot_writethrough pgprot_noncached
321 #endif
322
323 #ifndef pgprot_device
324 #define pgprot_device pgprot_noncached
325 #endif
326
327 #ifndef pgprot_modify
328 #define pgprot_modify pgprot_modify
329 static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
330 {
331         if (pgprot_val(oldprot) == pgprot_val(pgprot_noncached(oldprot)))
332                 newprot = pgprot_noncached(newprot);
333         if (pgprot_val(oldprot) == pgprot_val(pgprot_writecombine(oldprot)))
334                 newprot = pgprot_writecombine(newprot);
335         if (pgprot_val(oldprot) == pgprot_val(pgprot_device(oldprot)))
336                 newprot = pgprot_device(newprot);
337         return newprot;
338 }
339 #endif
340
341 /*
342  * When walking page tables, get the address of the next boundary,
343  * or the end address of the range if that comes earlier.  Although no
344  * vma end wraps to 0, rounded up __boundary may wrap to 0 throughout.
345  */
346
347 #define pgd_addr_end(addr, end)                                         \
348 ({      unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK;  \
349         (__boundary - 1 < (end) - 1)? __boundary: (end);                \
350 })
351
352 #ifndef pud_addr_end
353 #define pud_addr_end(addr, end)                                         \
354 ({      unsigned long __boundary = ((addr) + PUD_SIZE) & PUD_MASK;      \
355         (__boundary - 1 < (end) - 1)? __boundary: (end);                \
356 })
357 #endif
358
359 #ifndef pmd_addr_end
360 #define pmd_addr_end(addr, end)                                         \
361 ({      unsigned long __boundary = ((addr) + PMD_SIZE) & PMD_MASK;      \
362         (__boundary - 1 < (end) - 1)? __boundary: (end);                \
363 })
364 #endif
365
366 /*
367  * When walking page tables, we usually want to skip any p?d_none entries;
368  * and any p?d_bad entries - reporting the error before resetting to none.
369  * Do the tests inline, but report and clear the bad entry in mm/memory.c.
370  */
371 void pgd_clear_bad(pgd_t *);
372 void pud_clear_bad(pud_t *);
373 void pmd_clear_bad(pmd_t *);
374
375 static inline int pgd_none_or_clear_bad(pgd_t *pgd)
376 {
377         if (pgd_none(*pgd))
378                 return 1;
379         if (unlikely(pgd_bad(*pgd))) {
380                 pgd_clear_bad(pgd);
381                 return 1;
382         }
383         return 0;
384 }
385
386 static inline int pud_none_or_clear_bad(pud_t *pud)
387 {
388         if (pud_none(*pud))
389                 return 1;
390         if (unlikely(pud_bad(*pud))) {
391                 pud_clear_bad(pud);
392                 return 1;
393         }
394         return 0;
395 }
396
397 static inline int pmd_none_or_clear_bad(pmd_t *pmd)
398 {
399         if (pmd_none(*pmd))
400                 return 1;
401         if (unlikely(pmd_bad(*pmd))) {
402                 pmd_clear_bad(pmd);
403                 return 1;
404         }
405         return 0;
406 }
407
408 static inline pte_t __ptep_modify_prot_start(struct mm_struct *mm,
409                                              unsigned long addr,
410                                              pte_t *ptep)
411 {
412         /*
413          * Get the current pte state, but zero it out to make it
414          * non-present, preventing the hardware from asynchronously
415          * updating it.
416          */
417         return ptep_get_and_clear(mm, addr, ptep);
418 }
419
420 static inline void __ptep_modify_prot_commit(struct mm_struct *mm,
421                                              unsigned long addr,
422                                              pte_t *ptep, pte_t pte)
423 {
424         /*
425          * The pte is non-present, so there's no hardware state to
426          * preserve.
427          */
428         set_pte_at(mm, addr, ptep, pte);
429 }
430
431 #ifndef __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
432 /*
433  * Start a pte protection read-modify-write transaction, which
434  * protects against asynchronous hardware modifications to the pte.
435  * The intention is not to prevent the hardware from making pte
436  * updates, but to prevent any updates it may make from being lost.
437  *
438  * This does not protect against other software modifications of the
439  * pte; the appropriate pte lock must be held over the transation.
440  *
441  * Note that this interface is intended to be batchable, meaning that
442  * ptep_modify_prot_commit may not actually update the pte, but merely
443  * queue the update to be done at some later time.  The update must be
444  * actually committed before the pte lock is released, however.
445  */
446 static inline pte_t ptep_modify_prot_start(struct mm_struct *mm,
447                                            unsigned long addr,
448                                            pte_t *ptep)
449 {
450         return __ptep_modify_prot_start(mm, addr, ptep);
451 }
452
453 /*
454  * Commit an update to a pte, leaving any hardware-controlled bits in
455  * the PTE unmodified.
456  */
457 static inline void ptep_modify_prot_commit(struct mm_struct *mm,
458                                            unsigned long addr,
459                                            pte_t *ptep, pte_t pte)
460 {
461         __ptep_modify_prot_commit(mm, addr, ptep, pte);
462 }
463 #endif /* __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION */
464 #endif /* CONFIG_MMU */
465
466 /*
467  * A facility to provide lazy MMU batching.  This allows PTE updates and
468  * page invalidations to be delayed until a call to leave lazy MMU mode
469  * is issued.  Some architectures may benefit from doing this, and it is
470  * beneficial for both shadow and direct mode hypervisors, which may batch
471  * the PTE updates which happen during this window.  Note that using this
472  * interface requires that read hazards be removed from the code.  A read
473  * hazard could result in the direct mode hypervisor case, since the actual
474  * write to the page tables may not yet have taken place, so reads though
475  * a raw PTE pointer after it has been modified are not guaranteed to be
476  * up to date.  This mode can only be entered and left under the protection of
477  * the page table locks for all page tables which may be modified.  In the UP
478  * case, this is required so that preemption is disabled, and in the SMP case,
479  * it must synchronize the delayed page table writes properly on other CPUs.
480  */
481 #ifndef __HAVE_ARCH_ENTER_LAZY_MMU_MODE
482 #define arch_enter_lazy_mmu_mode()      do {} while (0)
483 #define arch_leave_lazy_mmu_mode()      do {} while (0)
484 #define arch_flush_lazy_mmu_mode()      do {} while (0)
485 #endif
486
487 /*
488  * A facility to provide batching of the reload of page tables and
489  * other process state with the actual context switch code for
490  * paravirtualized guests.  By convention, only one of the batched
491  * update (lazy) modes (CPU, MMU) should be active at any given time,
492  * entry should never be nested, and entry and exits should always be
493  * paired.  This is for sanity of maintaining and reasoning about the
494  * kernel code.  In this case, the exit (end of the context switch) is
495  * in architecture-specific code, and so doesn't need a generic
496  * definition.
497  */
498 #ifndef __HAVE_ARCH_START_CONTEXT_SWITCH
499 #define arch_start_context_switch(prev) do {} while (0)
500 #endif
501
502 #ifndef CONFIG_HAVE_ARCH_SOFT_DIRTY
503 static inline int pte_soft_dirty(pte_t pte)
504 {
505         return 0;
506 }
507
508 static inline int pmd_soft_dirty(pmd_t pmd)
509 {
510         return 0;
511 }
512
513 static inline pte_t pte_mksoft_dirty(pte_t pte)
514 {
515         return pte;
516 }
517
518 static inline pmd_t pmd_mksoft_dirty(pmd_t pmd)
519 {
520         return pmd;
521 }
522
523 static inline pte_t pte_clear_soft_dirty(pte_t pte)
524 {
525         return pte;
526 }
527
528 static inline pmd_t pmd_clear_soft_dirty(pmd_t pmd)
529 {
530         return pmd;
531 }
532
533 static inline pte_t pte_swp_mksoft_dirty(pte_t pte)
534 {
535         return pte;
536 }
537
538 static inline int pte_swp_soft_dirty(pte_t pte)
539 {
540         return 0;
541 }
542
543 static inline pte_t pte_swp_clear_soft_dirty(pte_t pte)
544 {
545         return pte;
546 }
547 #endif
548
549 #ifndef __HAVE_PFNMAP_TRACKING
550 /*
551  * Interfaces that can be used by architecture code to keep track of
552  * memory type of pfn mappings specified by the remap_pfn_range,
553  * vm_insert_pfn.
554  */
555
556 /*
557  * track_pfn_remap is called when a _new_ pfn mapping is being established
558  * by remap_pfn_range() for physical range indicated by pfn and size.
559  */
560 static inline int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
561                                   unsigned long pfn, unsigned long addr,
562                                   unsigned long size)
563 {
564         return 0;
565 }
566
567 /*
568  * track_pfn_insert is called when a _new_ single pfn is established
569  * by vm_insert_pfn().
570  */
571 static inline int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
572                                    unsigned long pfn)
573 {
574         return 0;
575 }
576
577 /*
578  * track_pfn_copy is called when vma that is covering the pfnmap gets
579  * copied through copy_page_range().
580  */
581 static inline int track_pfn_copy(struct vm_area_struct *vma)
582 {
583         return 0;
584 }
585
586 /*
587  * untrack_pfn_vma is called while unmapping a pfnmap for a region.
588  * untrack can be called for a specific region indicated by pfn and size or
589  * can be for the entire vma (in which case pfn, size are zero).
590  */
591 static inline void untrack_pfn(struct vm_area_struct *vma,
592                                unsigned long pfn, unsigned long size)
593 {
594 }
595 #else
596 extern int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
597                            unsigned long pfn, unsigned long addr,
598                            unsigned long size);
599 extern int track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
600                             unsigned long pfn);
601 extern int track_pfn_copy(struct vm_area_struct *vma);
602 extern void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
603                         unsigned long size);
604 #endif
605
606 #ifdef __HAVE_COLOR_ZERO_PAGE
607 static inline int is_zero_pfn(unsigned long pfn)
608 {
609         extern unsigned long zero_pfn;
610         unsigned long offset_from_zero_pfn = pfn - zero_pfn;
611         return offset_from_zero_pfn <= (zero_page_mask >> PAGE_SHIFT);
612 }
613
614 #define my_zero_pfn(addr)       page_to_pfn(ZERO_PAGE(addr))
615
616 #else
617 static inline int is_zero_pfn(unsigned long pfn)
618 {
619         extern unsigned long zero_pfn;
620         return pfn == zero_pfn;
621 }
622
623 static inline unsigned long my_zero_pfn(unsigned long addr)
624 {
625         extern unsigned long zero_pfn;
626         return zero_pfn;
627 }
628 #endif
629
630 #ifdef CONFIG_MMU
631
632 #ifndef CONFIG_TRANSPARENT_HUGEPAGE
633 static inline int pmd_trans_huge(pmd_t pmd)
634 {
635         return 0;
636 }
637 static inline int pmd_trans_splitting(pmd_t pmd)
638 {
639         return 0;
640 }
641 #ifndef __HAVE_ARCH_PMD_WRITE
642 static inline int pmd_write(pmd_t pmd)
643 {
644         BUG();
645         return 0;
646 }
647 #endif /* __HAVE_ARCH_PMD_WRITE */
648 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
649
650 #ifndef pmd_read_atomic
651 static inline pmd_t pmd_read_atomic(pmd_t *pmdp)
652 {
653         /*
654          * Depend on compiler for an atomic pmd read. NOTE: this is
655          * only going to work, if the pmdval_t isn't larger than
656          * an unsigned long.
657          */
658         return *pmdp;
659 }
660 #endif
661
662 #ifndef pmd_move_must_withdraw
663 static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
664                                          spinlock_t *old_pmd_ptl)
665 {
666         /*
667          * With split pmd lock we also need to move preallocated
668          * PTE page table if new_pmd is on different PMD page table.
669          */
670         return new_pmd_ptl != old_pmd_ptl;
671 }
672 #endif
673
674 /*
675  * This function is meant to be used by sites walking pagetables with
676  * the mmap_sem hold in read mode to protect against MADV_DONTNEED and
677  * transhuge page faults. MADV_DONTNEED can convert a transhuge pmd
678  * into a null pmd and the transhuge page fault can convert a null pmd
679  * into an hugepmd or into a regular pmd (if the hugepage allocation
680  * fails). While holding the mmap_sem in read mode the pmd becomes
681  * stable and stops changing under us only if it's not null and not a
682  * transhuge pmd. When those races occurs and this function makes a
683  * difference vs the standard pmd_none_or_clear_bad, the result is
684  * undefined so behaving like if the pmd was none is safe (because it
685  * can return none anyway). The compiler level barrier() is critically
686  * important to compute the two checks atomically on the same pmdval.
687  *
688  * For 32bit kernels with a 64bit large pmd_t this automatically takes
689  * care of reading the pmd atomically to avoid SMP race conditions
690  * against pmd_populate() when the mmap_sem is hold for reading by the
691  * caller (a special atomic read not done by "gcc" as in the generic
692  * version above, is also needed when THP is disabled because the page
693  * fault can populate the pmd from under us).
694  */
695 static inline int pmd_none_or_trans_huge_or_clear_bad(pmd_t *pmd)
696 {
697         pmd_t pmdval = pmd_read_atomic(pmd);
698         /*
699          * The barrier will stabilize the pmdval in a register or on
700          * the stack so that it will stop changing under the code.
701          *
702          * When CONFIG_TRANSPARENT_HUGEPAGE=y on x86 32bit PAE,
703          * pmd_read_atomic is allowed to return a not atomic pmdval
704          * (for example pointing to an hugepage that has never been
705          * mapped in the pmd). The below checks will only care about
706          * the low part of the pmd with 32bit PAE x86 anyway, with the
707          * exception of pmd_none(). So the important thing is that if
708          * the low part of the pmd is found null, the high part will
709          * be also null or the pmd_none() check below would be
710          * confused.
711          */
712 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
713         barrier();
714 #endif
715         if (pmd_none(pmdval) || pmd_trans_huge(pmdval))
716                 return 1;
717         if (unlikely(pmd_bad(pmdval))) {
718                 pmd_clear_bad(pmd);
719                 return 1;
720         }
721         return 0;
722 }
723
724 /*
725  * This is a noop if Transparent Hugepage Support is not built into
726  * the kernel. Otherwise it is equivalent to
727  * pmd_none_or_trans_huge_or_clear_bad(), and shall only be called in
728  * places that already verified the pmd is not none and they want to
729  * walk ptes while holding the mmap sem in read mode (write mode don't
730  * need this). If THP is not enabled, the pmd can't go away under the
731  * code even if MADV_DONTNEED runs, but if THP is enabled we need to
732  * run a pmd_trans_unstable before walking the ptes after
733  * split_huge_page_pmd returns (because it may have run when the pmd
734  * become null, but then a page fault can map in a THP and not a
735  * regular page).
736  */
737 static inline int pmd_trans_unstable(pmd_t *pmd)
738 {
739 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
740         return pmd_none_or_trans_huge_or_clear_bad(pmd);
741 #else
742         return 0;
743 #endif
744 }
745
746 #ifndef CONFIG_NUMA_BALANCING
747 /*
748  * Technically a PTE can be PROTNONE even when not doing NUMA balancing but
749  * the only case the kernel cares is for NUMA balancing and is only ever set
750  * when the VMA is accessible. For PROT_NONE VMAs, the PTEs are not marked
751  * _PAGE_PROTNONE so by by default, implement the helper as "always no". It
752  * is the responsibility of the caller to distinguish between PROT_NONE
753  * protections and NUMA hinting fault protections.
754  */
755 static inline int pte_protnone(pte_t pte)
756 {
757         return 0;
758 }
759
760 static inline int pmd_protnone(pmd_t pmd)
761 {
762         return 0;
763 }
764 #endif /* CONFIG_NUMA_BALANCING */
765
766 #endif /* CONFIG_MMU */
767
768 #ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
769 int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot);
770 int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot);
771 int pud_clear_huge(pud_t *pud);
772 int pmd_clear_huge(pmd_t *pmd);
773 int pud_free_pmd_page(pud_t *pud, unsigned long addr);
774 int pmd_free_pte_page(pmd_t *pmd, unsigned long addr);
775 #else   /* !CONFIG_HAVE_ARCH_HUGE_VMAP */
776 static inline int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
777 {
778         return 0;
779 }
780 static inline int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
781 {
782         return 0;
783 }
784 static inline int pud_clear_huge(pud_t *pud)
785 {
786         return 0;
787 }
788 static inline int pmd_clear_huge(pmd_t *pmd)
789 {
790         return 0;
791 }
792 static inline int pud_free_pmd_page(pud_t *pud, unsigned long addr)
793 {
794         return 0;
795 }
796 static inline int pmd_free_pte_page(pmd_t *pmd, unsigned long addr)
797 {
798         return 0;
799 }
800 #endif  /* CONFIG_HAVE_ARCH_HUGE_VMAP */
801
802 #ifndef __HAVE_ARCH_PFN_MODIFY_ALLOWED
803 static inline bool pfn_modify_allowed(unsigned long pfn, pgprot_t prot)
804 {
805         return true;
806 }
807
808 static inline bool arch_has_pfn_modify_check(void)
809 {
810         return false;
811 }
812 #endif /* !_HAVE_ARCH_PFN_MODIFY_ALLOWED */
813
814 #endif /* !__ASSEMBLY__ */
815
816 #ifndef io_remap_pfn_range
817 #define io_remap_pfn_range remap_pfn_range
818 #endif
819
820 #endif /* _ASM_GENERIC_PGTABLE_H */