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