9b33ac774fdda3f8ed44d3989a347d44e80173bb
[linux-2.6-microblaze.git] / include / linux / huge_mm.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_HUGE_MM_H
3 #define _LINUX_HUGE_MM_H
4
5 #include <linux/sched/coredump.h>
6 #include <linux/mm_types.h>
7
8 #include <linux/fs.h> /* only for vma_is_dax() */
9
10 extern vm_fault_t do_huge_pmd_anonymous_page(struct vm_fault *vmf);
11 extern int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
12                          pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
13                          struct vm_area_struct *vma);
14 extern void huge_pmd_set_accessed(struct vm_fault *vmf, pmd_t orig_pmd);
15 extern int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
16                          pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
17                          struct vm_area_struct *vma);
18
19 #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
20 extern void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud);
21 #else
22 static inline void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
23 {
24 }
25 #endif
26
27 extern vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf, pmd_t orig_pmd);
28 extern struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
29                                           unsigned long addr,
30                                           pmd_t *pmd,
31                                           unsigned int flags);
32 extern bool madvise_free_huge_pmd(struct mmu_gather *tlb,
33                         struct vm_area_struct *vma,
34                         pmd_t *pmd, unsigned long addr, unsigned long next);
35 extern int zap_huge_pmd(struct mmu_gather *tlb,
36                         struct vm_area_struct *vma,
37                         pmd_t *pmd, unsigned long addr);
38 extern int zap_huge_pud(struct mmu_gather *tlb,
39                         struct vm_area_struct *vma,
40                         pud_t *pud, unsigned long addr);
41 extern int mincore_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
42                         unsigned long addr, unsigned long end,
43                         unsigned char *vec);
44 extern bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
45                          unsigned long new_addr,
46                          pmd_t *old_pmd, pmd_t *new_pmd);
47 extern int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
48                         unsigned long addr, pgprot_t newprot,
49                         unsigned long cp_flags);
50 vm_fault_t vmf_insert_pfn_pmd_prot(struct vm_fault *vmf, pfn_t pfn,
51                                    pgprot_t pgprot, bool write);
52
53 /**
54  * vmf_insert_pfn_pmd - insert a pmd size pfn
55  * @vmf: Structure describing the fault
56  * @pfn: pfn to insert
57  * @pgprot: page protection to use
58  * @write: whether it's a write fault
59  *
60  * Insert a pmd size pfn. See vmf_insert_pfn() for additional info.
61  *
62  * Return: vm_fault_t value.
63  */
64 static inline vm_fault_t vmf_insert_pfn_pmd(struct vm_fault *vmf, pfn_t pfn,
65                                             bool write)
66 {
67         return vmf_insert_pfn_pmd_prot(vmf, pfn, vmf->vma->vm_page_prot, write);
68 }
69 vm_fault_t vmf_insert_pfn_pud_prot(struct vm_fault *vmf, pfn_t pfn,
70                                    pgprot_t pgprot, bool write);
71
72 /**
73  * vmf_insert_pfn_pud - insert a pud size pfn
74  * @vmf: Structure describing the fault
75  * @pfn: pfn to insert
76  * @pgprot: page protection to use
77  * @write: whether it's a write fault
78  *
79  * Insert a pud size pfn. See vmf_insert_pfn() for additional info.
80  *
81  * Return: vm_fault_t value.
82  */
83 static inline vm_fault_t vmf_insert_pfn_pud(struct vm_fault *vmf, pfn_t pfn,
84                                             bool write)
85 {
86         return vmf_insert_pfn_pud_prot(vmf, pfn, vmf->vma->vm_page_prot, write);
87 }
88
89 enum transparent_hugepage_flag {
90         TRANSPARENT_HUGEPAGE_FLAG,
91         TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
92         TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG,
93         TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG,
94         TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG,
95         TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG,
96         TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG,
97         TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG,
98 #ifdef CONFIG_DEBUG_VM
99         TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG,
100 #endif
101 };
102
103 struct kobject;
104 struct kobj_attribute;
105
106 extern ssize_t single_hugepage_flag_store(struct kobject *kobj,
107                                  struct kobj_attribute *attr,
108                                  const char *buf, size_t count,
109                                  enum transparent_hugepage_flag flag);
110 extern ssize_t single_hugepage_flag_show(struct kobject *kobj,
111                                 struct kobj_attribute *attr, char *buf,
112                                 enum transparent_hugepage_flag flag);
113 extern struct kobj_attribute shmem_enabled_attr;
114
115 #define HPAGE_PMD_ORDER (HPAGE_PMD_SHIFT-PAGE_SHIFT)
116 #define HPAGE_PMD_NR (1<<HPAGE_PMD_ORDER)
117
118 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
119 #define HPAGE_PMD_SHIFT PMD_SHIFT
120 #define HPAGE_PMD_SIZE  ((1UL) << HPAGE_PMD_SHIFT)
121 #define HPAGE_PMD_MASK  (~(HPAGE_PMD_SIZE - 1))
122
123 #define HPAGE_PUD_SHIFT PUD_SHIFT
124 #define HPAGE_PUD_SIZE  ((1UL) << HPAGE_PUD_SHIFT)
125 #define HPAGE_PUD_MASK  (~(HPAGE_PUD_SIZE - 1))
126
127 extern unsigned long transparent_hugepage_flags;
128
129 /*
130  * to be used on vmas which are known to support THP.
131  * Use transparent_hugepage_enabled otherwise
132  */
133 static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
134 {
135         if (vma->vm_flags & VM_NOHUGEPAGE)
136                 return false;
137
138         if (vma_is_temporary_stack(vma))
139                 return false;
140
141         if (test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
142                 return false;
143
144         if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_FLAG))
145                 return true;
146         /*
147          * For dax vmas, try to always use hugepage mappings. If the kernel does
148          * not support hugepages, fsdax mappings will fallback to PAGE_SIZE
149          * mappings, and device-dax namespaces, that try to guarantee a given
150          * mapping size, will fail to enable
151          */
152         if (vma_is_dax(vma))
153                 return true;
154
155         if (transparent_hugepage_flags &
156                                 (1 << TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG))
157                 return !!(vma->vm_flags & VM_HUGEPAGE);
158
159         return false;
160 }
161
162 bool transparent_hugepage_enabled(struct vm_area_struct *vma);
163
164 #define HPAGE_CACHE_INDEX_MASK (HPAGE_PMD_NR - 1)
165
166 static inline bool transhuge_vma_suitable(struct vm_area_struct *vma,
167                 unsigned long haddr)
168 {
169         /* Don't have to check pgoff for anonymous vma */
170         if (!vma_is_anonymous(vma)) {
171                 if (((vma->vm_start >> PAGE_SHIFT) & HPAGE_CACHE_INDEX_MASK) !=
172                         (vma->vm_pgoff & HPAGE_CACHE_INDEX_MASK))
173                         return false;
174         }
175
176         if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
177                 return false;
178         return true;
179 }
180
181 #define transparent_hugepage_use_zero_page()                            \
182         (transparent_hugepage_flags &                                   \
183          (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG))
184
185 extern unsigned long thp_get_unmapped_area(struct file *filp,
186                 unsigned long addr, unsigned long len, unsigned long pgoff,
187                 unsigned long flags);
188
189 extern void prep_transhuge_page(struct page *page);
190 extern void free_transhuge_page(struct page *page);
191 bool is_transparent_hugepage(struct page *page);
192
193 bool can_split_huge_page(struct page *page, int *pextra_pins);
194 int split_huge_page_to_list(struct page *page, struct list_head *list);
195 static inline int split_huge_page(struct page *page)
196 {
197         return split_huge_page_to_list(page, NULL);
198 }
199 void deferred_split_huge_page(struct page *page);
200
201 void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
202                 unsigned long address, bool freeze, struct page *page);
203
204 #define split_huge_pmd(__vma, __pmd, __address)                         \
205         do {                                                            \
206                 pmd_t *____pmd = (__pmd);                               \
207                 if (is_swap_pmd(*____pmd) || pmd_trans_huge(*____pmd)   \
208                                         || pmd_devmap(*____pmd))        \
209                         __split_huge_pmd(__vma, __pmd, __address,       \
210                                                 false, NULL);           \
211         }  while (0)
212
213
214 void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
215                 bool freeze, struct page *page);
216
217 void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
218                 unsigned long address);
219
220 #define split_huge_pud(__vma, __pud, __address)                         \
221         do {                                                            \
222                 pud_t *____pud = (__pud);                               \
223                 if (pud_trans_huge(*____pud)                            \
224                                         || pud_devmap(*____pud))        \
225                         __split_huge_pud(__vma, __pud, __address);      \
226         }  while (0)
227
228 extern int hugepage_madvise(struct vm_area_struct *vma,
229                             unsigned long *vm_flags, int advice);
230 extern void vma_adjust_trans_huge(struct vm_area_struct *vma,
231                                     unsigned long start,
232                                     unsigned long end,
233                                     long adjust_next);
234 extern spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd,
235                 struct vm_area_struct *vma);
236 extern spinlock_t *__pud_trans_huge_lock(pud_t *pud,
237                 struct vm_area_struct *vma);
238
239 static inline int is_swap_pmd(pmd_t pmd)
240 {
241         return !pmd_none(pmd) && !pmd_present(pmd);
242 }
243
244 /* mmap_lock must be held on entry */
245 static inline spinlock_t *pmd_trans_huge_lock(pmd_t *pmd,
246                 struct vm_area_struct *vma)
247 {
248         if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd))
249                 return __pmd_trans_huge_lock(pmd, vma);
250         else
251                 return NULL;
252 }
253 static inline spinlock_t *pud_trans_huge_lock(pud_t *pud,
254                 struct vm_area_struct *vma)
255 {
256         if (pud_trans_huge(*pud) || pud_devmap(*pud))
257                 return __pud_trans_huge_lock(pud, vma);
258         else
259                 return NULL;
260 }
261
262 /**
263  * thp_order - Order of a transparent huge page.
264  * @page: Head page of a transparent huge page.
265  */
266 static inline unsigned int thp_order(struct page *page)
267 {
268         VM_BUG_ON_PGFLAGS(PageTail(page), page);
269         if (PageHead(page))
270                 return HPAGE_PMD_ORDER;
271         return 0;
272 }
273
274 static inline int hpage_nr_pages(struct page *page)
275 {
276         if (unlikely(PageTransHuge(page)))
277                 return HPAGE_PMD_NR;
278         return 1;
279 }
280
281 struct page *follow_devmap_pmd(struct vm_area_struct *vma, unsigned long addr,
282                 pmd_t *pmd, int flags, struct dev_pagemap **pgmap);
283 struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
284                 pud_t *pud, int flags, struct dev_pagemap **pgmap);
285
286 extern vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf, pmd_t orig_pmd);
287
288 extern struct page *huge_zero_page;
289
290 static inline bool is_huge_zero_page(struct page *page)
291 {
292         return READ_ONCE(huge_zero_page) == page;
293 }
294
295 static inline bool is_huge_zero_pmd(pmd_t pmd)
296 {
297         return is_huge_zero_page(pmd_page(pmd));
298 }
299
300 static inline bool is_huge_zero_pud(pud_t pud)
301 {
302         return false;
303 }
304
305 struct page *mm_get_huge_zero_page(struct mm_struct *mm);
306 void mm_put_huge_zero_page(struct mm_struct *mm);
307
308 #define mk_huge_pmd(page, prot) pmd_mkhuge(mk_pmd(page, prot))
309
310 static inline bool thp_migration_supported(void)
311 {
312         return IS_ENABLED(CONFIG_ARCH_ENABLE_THP_MIGRATION);
313 }
314
315 static inline struct list_head *page_deferred_list(struct page *page)
316 {
317         /*
318          * Global or memcg deferred list in the second tail pages is
319          * occupied by compound_head.
320          */
321         return &page[2].deferred_list;
322 }
323
324 #else /* CONFIG_TRANSPARENT_HUGEPAGE */
325 #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; })
326 #define HPAGE_PMD_MASK ({ BUILD_BUG(); 0; })
327 #define HPAGE_PMD_SIZE ({ BUILD_BUG(); 0; })
328
329 #define HPAGE_PUD_SHIFT ({ BUILD_BUG(); 0; })
330 #define HPAGE_PUD_MASK ({ BUILD_BUG(); 0; })
331 #define HPAGE_PUD_SIZE ({ BUILD_BUG(); 0; })
332
333 static inline unsigned int thp_order(struct page *page)
334 {
335         VM_BUG_ON_PGFLAGS(PageTail(page), page);
336         return 0;
337 }
338
339 static inline int hpage_nr_pages(struct page *page)
340 {
341         VM_BUG_ON_PAGE(PageTail(page), page);
342         return 1;
343 }
344
345 static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
346 {
347         return false;
348 }
349
350 static inline bool transparent_hugepage_enabled(struct vm_area_struct *vma)
351 {
352         return false;
353 }
354
355 static inline bool transhuge_vma_suitable(struct vm_area_struct *vma,
356                 unsigned long haddr)
357 {
358         return false;
359 }
360
361 static inline void prep_transhuge_page(struct page *page) {}
362
363 static inline bool is_transparent_hugepage(struct page *page)
364 {
365         return false;
366 }
367
368 #define transparent_hugepage_flags 0UL
369
370 #define thp_get_unmapped_area   NULL
371
372 static inline bool
373 can_split_huge_page(struct page *page, int *pextra_pins)
374 {
375         BUILD_BUG();
376         return false;
377 }
378 static inline int
379 split_huge_page_to_list(struct page *page, struct list_head *list)
380 {
381         return 0;
382 }
383 static inline int split_huge_page(struct page *page)
384 {
385         return 0;
386 }
387 static inline void deferred_split_huge_page(struct page *page) {}
388 #define split_huge_pmd(__vma, __pmd, __address) \
389         do { } while (0)
390
391 static inline void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
392                 unsigned long address, bool freeze, struct page *page) {}
393 static inline void split_huge_pmd_address(struct vm_area_struct *vma,
394                 unsigned long address, bool freeze, struct page *page) {}
395
396 #define split_huge_pud(__vma, __pmd, __address) \
397         do { } while (0)
398
399 static inline int hugepage_madvise(struct vm_area_struct *vma,
400                                    unsigned long *vm_flags, int advice)
401 {
402         BUG();
403         return 0;
404 }
405 static inline void vma_adjust_trans_huge(struct vm_area_struct *vma,
406                                          unsigned long start,
407                                          unsigned long end,
408                                          long adjust_next)
409 {
410 }
411 static inline int is_swap_pmd(pmd_t pmd)
412 {
413         return 0;
414 }
415 static inline spinlock_t *pmd_trans_huge_lock(pmd_t *pmd,
416                 struct vm_area_struct *vma)
417 {
418         return NULL;
419 }
420 static inline spinlock_t *pud_trans_huge_lock(pud_t *pud,
421                 struct vm_area_struct *vma)
422 {
423         return NULL;
424 }
425
426 static inline vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf,
427                 pmd_t orig_pmd)
428 {
429         return 0;
430 }
431
432 static inline bool is_huge_zero_page(struct page *page)
433 {
434         return false;
435 }
436
437 static inline bool is_huge_zero_pud(pud_t pud)
438 {
439         return false;
440 }
441
442 static inline void mm_put_huge_zero_page(struct mm_struct *mm)
443 {
444         return;
445 }
446
447 static inline struct page *follow_devmap_pmd(struct vm_area_struct *vma,
448         unsigned long addr, pmd_t *pmd, int flags, struct dev_pagemap **pgmap)
449 {
450         return NULL;
451 }
452
453 static inline struct page *follow_devmap_pud(struct vm_area_struct *vma,
454         unsigned long addr, pud_t *pud, int flags, struct dev_pagemap **pgmap)
455 {
456         return NULL;
457 }
458
459 static inline bool thp_migration_supported(void)
460 {
461         return false;
462 }
463 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
464
465 /**
466  * thp_size - Size of a transparent huge page.
467  * @page: Head page of a transparent huge page.
468  *
469  * Return: Number of bytes in this page.
470  */
471 static inline unsigned long thp_size(struct page *page)
472 {
473         return PAGE_SIZE << thp_order(page);
474 }
475
476 #endif /* _LINUX_HUGE_MM_H */