mm: Add lru_to_folio()
[linux-block.git] / mm / internal.h
CommitLineData
2874c5fd 1/* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4
LT
2/* internal.h: mm/ internal definitions
3 *
4 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
1da177e4 6 */
0f8053a5
NP
7#ifndef __MM_INTERNAL_H
8#define __MM_INTERNAL_H
9
29f175d1 10#include <linux/fs.h>
0f8053a5 11#include <linux/mm.h>
e9b61f19 12#include <linux/pagemap.h>
edf14cdb 13#include <linux/tracepoint-defs.h>
1da177e4 14
0e499ed3
MWO
15struct folio_batch;
16
dd56b046
MG
17/*
18 * The set of flags that only affect watermark checking and reclaim
19 * behaviour. This is used by the MM to obey the caller constraints
20 * about IO, FS and watermark checking while ignoring placement
21 * hints such as HIGHMEM usage.
22 */
23#define GFP_RECLAIM_MASK (__GFP_RECLAIM|__GFP_HIGH|__GFP_IO|__GFP_FS|\
dcda9b04 24 __GFP_NOWARN|__GFP_RETRY_MAYFAIL|__GFP_NOFAIL|\
e838a45f 25 __GFP_NORETRY|__GFP_MEMALLOC|__GFP_NOMEMALLOC|\
704687de 26 __GFP_ATOMIC|__GFP_NOLOCKDEP)
dd56b046
MG
27
28/* The GFP flags allowed during early boot */
29#define GFP_BOOT_MASK (__GFP_BITS_MASK & ~(__GFP_RECLAIM|__GFP_IO|__GFP_FS))
30
31/* Control allocation cpuset and node placement constraints */
32#define GFP_CONSTRAINT_MASK (__GFP_HARDWALL|__GFP_THISNODE)
33
34/* Do not use these with a slab allocator */
35#define GFP_SLAB_BUG_MASK (__GFP_DMA32|__GFP_HIGHMEM|~__GFP_BITS_MASK)
36
62906027
NP
37void page_writeback_init(void);
38
64601000
MWO
39static inline void *folio_raw_mapping(struct folio *folio)
40{
41 unsigned long mapping = (unsigned long)folio->mapping;
42
43 return (void *)(mapping & ~PAGE_MAPPING_FLAGS);
44}
45
512b7931 46void __acct_reclaim_writeback(pg_data_t *pgdat, struct folio *folio,
8cd7c588 47 int nr_throttled);
512b7931 48static inline void acct_reclaim_writeback(struct folio *folio)
8cd7c588 49{
512b7931 50 pg_data_t *pgdat = folio_pgdat(folio);
8cd7c588
MG
51 int nr_throttled = atomic_read(&pgdat->nr_writeback_throttled);
52
53 if (nr_throttled)
512b7931 54 __acct_reclaim_writeback(pgdat, folio, nr_throttled);
8cd7c588
MG
55}
56
d818fca1
MG
57static inline void wake_throttle_isolated(pg_data_t *pgdat)
58{
59 wait_queue_head_t *wqh;
60
61 wqh = &pgdat->reclaim_wait[VMSCAN_THROTTLE_ISOLATED];
62 if (waitqueue_active(wqh))
63 wake_up(wqh);
64}
65
2b740303 66vm_fault_t do_swap_page(struct vm_fault *vmf);
575ced1c 67void folio_rotate_reclaimable(struct folio *folio);
269ccca3 68bool __folio_end_writeback(struct folio *folio);
8a966ed7 69
42b77728
JB
70void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *start_vma,
71 unsigned long floor, unsigned long ceiling);
03c4f204 72void pmd_install(struct mm_struct *mm, pmd_t *pmd, pgtable_t *pte);
42b77728 73
3506659e 74struct zap_details;
aac45363
MH
75void unmap_page_range(struct mmu_gather *tlb,
76 struct vm_area_struct *vma,
77 unsigned long addr, unsigned long end,
78 struct zap_details *details);
79
7b3df3b9
DH
80void do_page_cache_ra(struct readahead_control *, unsigned long nr_to_read,
81 unsigned long lookahead_size);
fcd9ae4f 82void force_page_cache_ra(struct readahead_control *, unsigned long nr);
7b3df3b9
DH
83static inline void force_page_cache_readahead(struct address_space *mapping,
84 struct file *file, pgoff_t index, unsigned long nr_to_read)
85{
fcd9ae4f
MWO
86 DEFINE_READAHEAD(ractl, file, &file->f_ra, mapping, index);
87 force_page_cache_ra(&ractl, nr_to_read);
7b3df3b9 88}
29f175d1 89
5c211ba2 90unsigned find_lock_entries(struct address_space *mapping, pgoff_t start,
51dcbdac 91 pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices);
0e499ed3
MWO
92unsigned find_get_entries(struct address_space *mapping, pgoff_t start,
93 pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices);
78f42660 94void filemap_free_folio(struct address_space *mapping, struct folio *folio);
1e84a3d9 95int truncate_inode_folio(struct address_space *mapping, struct folio *folio);
b9a8a419
MWO
96bool truncate_inode_partial_folio(struct folio *folio, loff_t start,
97 loff_t end);
5c211ba2 98
1eb6234e 99/**
3eed3ef5
MWO
100 * folio_evictable - Test whether a folio is evictable.
101 * @folio: The folio to test.
1eb6234e 102 *
3eed3ef5
MWO
103 * Test whether @folio is evictable -- i.e., should be placed on
104 * active/inactive lists vs unevictable list.
1eb6234e 105 *
3eed3ef5
MWO
106 * Reasons folio might not be evictable:
107 * 1. folio's mapping marked unevictable
108 * 2. One of the pages in the folio is part of an mlocked VMA
1eb6234e 109 */
3eed3ef5
MWO
110static inline bool folio_evictable(struct folio *folio)
111{
112 bool ret;
113
114 /* Prevent address_space of inode and swap cache from being freed */
115 rcu_read_lock();
116 ret = !mapping_unevictable(folio_mapping(folio)) &&
117 !folio_test_mlocked(folio);
118 rcu_read_unlock();
119 return ret;
120}
121
1eb6234e
YS
122static inline bool page_evictable(struct page *page)
123{
124 bool ret;
125
126 /* Prevent address_space of inode and swap cache from being freed */
127 rcu_read_lock();
128 ret = !mapping_unevictable(page_mapping(page)) && !PageMlocked(page);
129 rcu_read_unlock();
130 return ret;
131}
132
7835e98b 133/*
0139aa7b 134 * Turn a non-refcounted page (->_refcount == 0) into refcounted with
7835e98b
NP
135 * a count of one.
136 */
137static inline void set_page_refcounted(struct page *page)
138{
309381fe 139 VM_BUG_ON_PAGE(PageTail(page), page);
fe896d18 140 VM_BUG_ON_PAGE(page_ref_count(page), page);
77a8a788 141 set_page_count(page, 1);
77a8a788
NP
142}
143
03f6462a
HD
144extern unsigned long highest_memmap_pfn;
145
c73322d0
JW
146/*
147 * Maximum number of reclaim retries without progress before the OOM
148 * killer is consider the only way forward.
149 */
150#define MAX_RECLAIM_RETRIES 16
151
894bc310
LS
152/*
153 * in mm/vmscan.c:
154 */
d1d8a3b4
MWO
155int isolate_lru_page(struct page *page);
156int folio_isolate_lru(struct folio *folio);
894bc310 157extern void putback_lru_page(struct page *page);
c3f4a9a2 158extern void reclaim_throttle(pg_data_t *pgdat, enum vmscan_throttle_state reason);
62695a84 159
6219049a
BL
160/*
161 * in mm/rmap.c:
162 */
163extern pmd_t *mm_find_pmd(struct mm_struct *mm, unsigned long address);
164
894bc310
LS
165/*
166 * in mm/page_alloc.c
167 */
3c605096 168
1a6d53a1
VB
169/*
170 * Structure for holding the mostly immutable allocation parameters passed
171 * between functions involved in allocations, including the alloc_pages*
172 * family of functions.
173 *
97a225e6 174 * nodemask, migratetype and highest_zoneidx are initialized only once in
84172f4b 175 * __alloc_pages() and then never change.
1a6d53a1 176 *
97a225e6 177 * zonelist, preferred_zone and highest_zoneidx are set first in
84172f4b 178 * __alloc_pages() for the fast path, and might be later changed
68956ccb 179 * in __alloc_pages_slowpath(). All other functions pass the whole structure
1a6d53a1
VB
180 * by a const pointer.
181 */
182struct alloc_context {
183 struct zonelist *zonelist;
184 nodemask_t *nodemask;
c33d6c06 185 struct zoneref *preferred_zoneref;
1a6d53a1 186 int migratetype;
97a225e6
JK
187
188 /*
189 * highest_zoneidx represents highest usable zone index of
190 * the allocation request. Due to the nature of the zone,
191 * memory on lower zone than the highest_zoneidx will be
192 * protected by lowmem_reserve[highest_zoneidx].
193 *
194 * highest_zoneidx is also used by reclaim/compaction to limit
195 * the target zone since higher zone than this index cannot be
196 * usable for this allocation request.
197 */
198 enum zone_type highest_zoneidx;
c9ab0c4f 199 bool spread_dirty_pages;
1a6d53a1
VB
200};
201
3c605096
JK
202/*
203 * Locate the struct page for both the matching buddy in our
204 * pair (buddy1) and the combined O(n+1) page they form (page).
205 *
206 * 1) Any buddy B1 will have an order O twin B2 which satisfies
207 * the following equation:
208 * B2 = B1 ^ (1 << O)
209 * For example, if the starting buddy (buddy2) is #8 its order
210 * 1 buddy is #10:
211 * B2 = 8 ^ (1 << 1) = 8 ^ 2 = 10
212 *
213 * 2) Any buddy B will have an order O+1 parent P which
214 * satisfies the following equation:
215 * P = B & ~(1 << O)
216 *
217 * Assumption: *_mem_map is contiguous at least up to MAX_ORDER
218 */
219static inline unsigned long
76741e77 220__find_buddy_pfn(unsigned long page_pfn, unsigned int order)
3c605096 221{
76741e77 222 return page_pfn ^ (1 << order);
3c605096
JK
223}
224
7cf91a98
JK
225extern struct page *__pageblock_pfn_to_page(unsigned long start_pfn,
226 unsigned long end_pfn, struct zone *zone);
227
228static inline struct page *pageblock_pfn_to_page(unsigned long start_pfn,
229 unsigned long end_pfn, struct zone *zone)
230{
231 if (zone->contiguous)
232 return pfn_to_page(start_pfn);
233
234 return __pageblock_pfn_to_page(start_pfn, end_pfn, zone);
235}
236
3c605096 237extern int __isolate_free_page(struct page *page, unsigned int order);
624f58d8
AD
238extern void __putback_isolated_page(struct page *page, unsigned int order,
239 int mt);
7c2ee349 240extern void memblock_free_pages(struct page *page, unsigned long pfn,
d70ddd7a 241 unsigned int order);
a9cd410a 242extern void __free_pages_core(struct page *page, unsigned int order);
d00181b9 243extern void prep_compound_page(struct page *page, unsigned int order);
46f24fd8
JK
244extern void post_alloc_hook(struct page *page, unsigned int order,
245 gfp_t gfp_flags);
42aa83cb 246extern int user_min_free_kbytes;
20a0307c 247
44042b44 248extern void free_unref_page(struct page *page, unsigned int order);
0966aeb4
MWO
249extern void free_unref_page_list(struct list_head *list);
250
04f8cfea 251extern void zone_pcp_update(struct zone *zone, int cpu_online);
68265390 252extern void zone_pcp_reset(struct zone *zone);
ec6e8c7e
VB
253extern void zone_pcp_disable(struct zone *zone);
254extern void zone_pcp_enable(struct zone *zone);
68265390 255
c803b3c8
MR
256extern void *memmap_alloc(phys_addr_t size, phys_addr_t align,
257 phys_addr_t min_addr,
258 int nid, bool exact_nid);
259
ff9543fd
MN
260#if defined CONFIG_COMPACTION || defined CONFIG_CMA
261
262/*
263 * in mm/compaction.c
264 */
265/*
266 * compact_control is used to track pages being migrated and the free pages
267 * they are being migrated to during memory compaction. The free_pfn starts
268 * at the end of a zone and migrate_pfn begins at the start. Movable pages
269 * are moved to the end of a zone during a compaction run and the run
270 * completes when free_pfn <= migrate_pfn
271 */
272struct compact_control {
273 struct list_head freepages; /* List of free pages to migrate to */
274 struct list_head migratepages; /* List of pages being migrated */
c5fbd937
MG
275 unsigned int nr_freepages; /* Number of isolated free pages */
276 unsigned int nr_migratepages; /* Number of pages to migrate */
ff9543fd 277 unsigned long free_pfn; /* isolate_freepages search base */
c2ad7a1f
OS
278 /*
279 * Acts as an in/out parameter to page isolation for migration.
280 * isolate_migratepages uses it as a search base.
281 * isolate_migratepages_block will update the value to the next pfn
282 * after the last isolated one.
283 */
284 unsigned long migrate_pfn;
70b44595 285 unsigned long fast_start_pfn; /* a pfn to start linear scan from */
c5943b9c
MG
286 struct zone *zone;
287 unsigned long total_migrate_scanned;
288 unsigned long total_free_scanned;
dbe2d4e4
MG
289 unsigned short fast_search_fail;/* failures to use free list searches */
290 short search_order; /* order to start a fast search at */
f25ba6dc
VB
291 const gfp_t gfp_mask; /* gfp mask of a direct compactor */
292 int order; /* order a direct compactor needs */
d39773a0 293 int migratetype; /* migratetype of direct compactor */
f25ba6dc 294 const unsigned int alloc_flags; /* alloc flags of a direct compactor */
97a225e6 295 const int highest_zoneidx; /* zone index of a direct compactor */
e0b9daeb 296 enum migrate_mode mode; /* Async or sync migration mode */
bb13ffeb 297 bool ignore_skip_hint; /* Scan blocks even if marked skip */
2583d671 298 bool no_set_skip_hint; /* Don't mark blocks for skipping */
9f7e3387 299 bool ignore_block_suitable; /* Scan blocks considered unsuitable */
accf6242 300 bool direct_compaction; /* False from kcompactd or /proc/... */
facdaa91 301 bool proactive_compaction; /* kcompactd proactive compaction */
06ed2998 302 bool whole_zone; /* Whole zone should/has been scanned */
c3486f53 303 bool contended; /* Signal lock or sched contention */
804d3121 304 bool rescan; /* Rescanning the same pageblock */
b06eda09 305 bool alloc_contig; /* alloc_contig_range allocation */
ff9543fd
MN
306};
307
5e1f0f09
MG
308/*
309 * Used in direct compaction when a page should be taken from the freelists
310 * immediately when one is created during the free path.
311 */
312struct capture_control {
313 struct compact_control *cc;
314 struct page *page;
315};
316
ff9543fd 317unsigned long
bb13ffeb
MG
318isolate_freepages_range(struct compact_control *cc,
319 unsigned long start_pfn, unsigned long end_pfn);
c2ad7a1f 320int
edc2ca61
VB
321isolate_migratepages_range(struct compact_control *cc,
322 unsigned long low_pfn, unsigned long end_pfn);
ffd8f251 323#endif
2149cdae
JK
324int find_suitable_fallback(struct free_area *area, unsigned int order,
325 int migratetype, bool only_stealable, bool *can_steal);
ff9543fd 326
48f13bf3 327/*
6c14466c
MG
328 * This function returns the order of a free page in the buddy system. In
329 * general, page_zone(page)->lock must be held by the caller to prevent the
330 * page from being allocated in parallel and returning garbage as the order.
331 * If a caller does not hold page_zone(page)->lock, it must guarantee that the
99c0fd5e 332 * page cannot be allocated or merged in parallel. Alternatively, it must
ab130f91 333 * handle invalid values gracefully, and use buddy_order_unsafe() below.
48f13bf3 334 */
ab130f91 335static inline unsigned int buddy_order(struct page *page)
48f13bf3 336{
572438f9 337 /* PageBuddy() must be checked by the caller */
48f13bf3
MG
338 return page_private(page);
339}
b5a0e011 340
99c0fd5e 341/*
ab130f91 342 * Like buddy_order(), but for callers who cannot afford to hold the zone lock.
99c0fd5e
VB
343 * PageBuddy() should be checked first by the caller to minimize race window,
344 * and invalid values must be handled gracefully.
345 *
4db0c3c2 346 * READ_ONCE is used so that if the caller assigns the result into a local
99c0fd5e
VB
347 * variable and e.g. tests it for valid range before using, the compiler cannot
348 * decide to remove the variable and inline the page_private(page) multiple
349 * times, potentially observing different values in the tests and the actual
350 * use of the result.
351 */
ab130f91 352#define buddy_order_unsafe(page) READ_ONCE(page_private(page))
99c0fd5e 353
30bdbb78
KK
354/*
355 * These three helpers classifies VMAs for virtual memory accounting.
356 */
357
358/*
359 * Executable code area - executable, not writable, not stack
360 */
d977d56c
KK
361static inline bool is_exec_mapping(vm_flags_t flags)
362{
30bdbb78 363 return (flags & (VM_EXEC | VM_WRITE | VM_STACK)) == VM_EXEC;
d977d56c
KK
364}
365
30bdbb78 366/*
f0953a1b 367 * Stack area - automatically grows in one direction
30bdbb78
KK
368 *
369 * VM_GROWSUP / VM_GROWSDOWN VMAs are always private anonymous:
370 * do_mmap() forbids all other combinations.
371 */
d977d56c
KK
372static inline bool is_stack_mapping(vm_flags_t flags)
373{
30bdbb78 374 return (flags & VM_STACK) == VM_STACK;
d977d56c
KK
375}
376
30bdbb78
KK
377/*
378 * Data area - private, writable, not stack
379 */
d977d56c
KK
380static inline bool is_data_mapping(vm_flags_t flags)
381{
30bdbb78 382 return (flags & (VM_WRITE | VM_SHARED | VM_STACK)) == VM_WRITE;
d977d56c
KK
383}
384
6038def0
NK
385/* mm/util.c */
386void __vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
aba6dfb7 387 struct vm_area_struct *prev);
1b9fc5b2 388void __vma_unlink_list(struct mm_struct *mm, struct vm_area_struct *vma);
6038def0 389
af8e3354 390#ifdef CONFIG_MMU
3506659e 391void unmap_mapping_folio(struct folio *folio);
fc05f566 392extern long populate_vma_page_range(struct vm_area_struct *vma,
a78f1ccd 393 unsigned long start, unsigned long end, int *locked);
4ca9b385
DH
394extern long faultin_vma_page_range(struct vm_area_struct *vma,
395 unsigned long start, unsigned long end,
396 bool write, int *locked);
a213e5cf
HD
397extern int mlock_future_check(struct mm_struct *mm, unsigned long flags,
398 unsigned long len);
b291f000 399/*
cea86fe2
HD
400 * mlock_vma_page() and munlock_vma_page():
401 * should be called with vma's mmap_lock held for read or write,
402 * under page table lock for the pte/pmd being added or removed.
403 *
404 * mlock is usually called at the end of page_add_*_rmap(),
405 * munlock at the end of page_remove_rmap(); but new anon
2fbb0c10
HD
406 * pages are managed by lru_cache_add_inactive_or_unevictable()
407 * calling mlock_new_page().
cea86fe2
HD
408 *
409 * @compound is used to include pmd mappings of THPs, but filter out
410 * pte mappings of THPs, which cannot be consistently counted: a pte
411 * mapping of the THP head cannot be distinguished by the page alone.
b291f000 412 */
cea86fe2
HD
413void mlock_page(struct page *page);
414static inline void mlock_vma_page(struct page *page,
415 struct vm_area_struct *vma, bool compound)
416{
c8263bd6
HD
417 /*
418 * The VM_SPECIAL check here serves two purposes.
419 * 1) VM_IO check prevents migration from double-counting during mlock.
420 * 2) Although mmap_region() and mlock_fixup() take care that VM_LOCKED
421 * is never left set on a VM_SPECIAL vma, there is an interval while
422 * file->f_op->mmap() is using vm_insert_page(s), when VM_LOCKED may
423 * still be set while VM_SPECIAL bits are added: so ignore it then.
424 */
425 if (unlikely((vma->vm_flags & (VM_LOCKED|VM_SPECIAL)) == VM_LOCKED) &&
cea86fe2
HD
426 (compound || !PageTransCompound(page)))
427 mlock_page(page);
428}
429void munlock_page(struct page *page);
430static inline void munlock_vma_page(struct page *page,
431 struct vm_area_struct *vma, bool compound)
432{
433 if (unlikely(vma->vm_flags & VM_LOCKED) &&
434 (compound || !PageTransCompound(page)))
435 munlock_page(page);
436}
2fbb0c10
HD
437void mlock_new_page(struct page *page);
438bool need_mlock_page_drain(int cpu);
439void mlock_page_drain(int cpu);
b291f000 440
f55e1014 441extern pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma);
b32967ff 442
e9b61f19 443/*
494334e4
HD
444 * At what user virtual address is page expected in vma?
445 * Returns -EFAULT if all of the page is outside the range of vma.
446 * If page is a compound head, the entire compound page is considered.
e9b61f19
KS
447 */
448static inline unsigned long
494334e4 449vma_address(struct page *page, struct vm_area_struct *vma)
e9b61f19 450{
494334e4
HD
451 pgoff_t pgoff;
452 unsigned long address;
453
454 VM_BUG_ON_PAGE(PageKsm(page), page); /* KSM page->index unusable */
455 pgoff = page_to_pgoff(page);
456 if (pgoff >= vma->vm_pgoff) {
457 address = vma->vm_start +
458 ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
459 /* Check for address beyond vma (or wrapped through 0?) */
460 if (address < vma->vm_start || address >= vma->vm_end)
461 address = -EFAULT;
462 } else if (PageHead(page) &&
463 pgoff + compound_nr(page) - 1 >= vma->vm_pgoff) {
464 /* Test above avoids possibility of wrap to 0 on 32-bit */
465 address = vma->vm_start;
466 } else {
467 address = -EFAULT;
468 }
469 return address;
e9b61f19
KS
470}
471
494334e4
HD
472/*
473 * Then at what user virtual address will none of the page be found in vma?
474 * Assumes that vma_address() already returned a good starting address.
475 * If page is a compound head, the entire compound page is considered.
476 */
e9b61f19 477static inline unsigned long
494334e4 478vma_address_end(struct page *page, struct vm_area_struct *vma)
e9b61f19 479{
494334e4
HD
480 pgoff_t pgoff;
481 unsigned long address;
482
483 VM_BUG_ON_PAGE(PageKsm(page), page); /* KSM page->index unusable */
484 pgoff = page_to_pgoff(page) + compound_nr(page);
485 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
486 /* Check for address beyond vma (or wrapped through 0?) */
487 if (address < vma->vm_start || address > vma->vm_end)
488 address = vma->vm_end;
489 return address;
e9b61f19
KS
490}
491
89b15332
JW
492static inline struct file *maybe_unlock_mmap_for_io(struct vm_fault *vmf,
493 struct file *fpin)
494{
495 int flags = vmf->flags;
496
497 if (fpin)
498 return fpin;
499
500 /*
501 * FAULT_FLAG_RETRY_NOWAIT means we don't want to wait on page locks or
c1e8d7c6 502 * anything, so we only pin the file and drop the mmap_lock if only
4064b982 503 * FAULT_FLAG_ALLOW_RETRY is set, while this is the first attempt.
89b15332 504 */
4064b982
PX
505 if (fault_flag_allow_retry_first(flags) &&
506 !(flags & FAULT_FLAG_RETRY_NOWAIT)) {
89b15332 507 fpin = get_file(vmf->vma->vm_file);
d8ed45c5 508 mmap_read_unlock(vmf->vma->vm_mm);
89b15332
JW
509 }
510 return fpin;
511}
af8e3354 512#else /* !CONFIG_MMU */
3506659e 513static inline void unmap_mapping_folio(struct folio *folio) { }
cea86fe2
HD
514static inline void mlock_vma_page(struct page *page,
515 struct vm_area_struct *vma, bool compound) { }
516static inline void munlock_vma_page(struct page *page,
517 struct vm_area_struct *vma, bool compound) { }
2fbb0c10
HD
518static inline void mlock_new_page(struct page *page) { }
519static inline bool need_mlock_page_drain(int cpu) { return false; }
520static inline void mlock_page_drain(int cpu) { }
4ad0ae8c
NP
521static inline void vunmap_range_noflush(unsigned long start, unsigned long end)
522{
523}
af8e3354 524#endif /* !CONFIG_MMU */
894bc310 525
69d177c2
AW
526/*
527 * Return the mem_map entry representing the 'offset' subpage within
528 * the maximally aligned gigantic page 'base'. Handle any discontiguity
529 * in the mem_map at MAX_ORDER_NR_PAGES boundaries.
530 */
531static inline struct page *mem_map_offset(struct page *base, int offset)
532{
533 if (unlikely(offset >= MAX_ORDER_NR_PAGES))
bc7f84c0 534 return nth_page(base, offset);
69d177c2
AW
535 return base + offset;
536}
537
538/*
25985edc 539 * Iterator over all subpages within the maximally aligned gigantic
69d177c2
AW
540 * page 'base'. Handle any discontiguity in the mem_map.
541 */
542static inline struct page *mem_map_next(struct page *iter,
543 struct page *base, int offset)
544{
545 if (unlikely((offset & (MAX_ORDER_NR_PAGES - 1)) == 0)) {
546 unsigned long pfn = page_to_pfn(base) + offset;
547 if (!pfn_valid(pfn))
548 return NULL;
549 return pfn_to_page(pfn);
550 }
551 return iter + 1;
552}
553
6b74ab97
MG
554/* Memory initialisation debug and verification */
555enum mminit_level {
556 MMINIT_WARNING,
557 MMINIT_VERIFY,
558 MMINIT_TRACE
559};
560
561#ifdef CONFIG_DEBUG_MEMORY_INIT
562
563extern int mminit_loglevel;
564
565#define mminit_dprintk(level, prefix, fmt, arg...) \
566do { \
567 if (level < mminit_loglevel) { \
fc5199d1 568 if (level <= MMINIT_WARNING) \
1170532b 569 pr_warn("mminit::" prefix " " fmt, ##arg); \
fc5199d1
RV
570 else \
571 printk(KERN_DEBUG "mminit::" prefix " " fmt, ##arg); \
6b74ab97
MG
572 } \
573} while (0)
574
708614e6 575extern void mminit_verify_pageflags_layout(void);
68ad8df4 576extern void mminit_verify_zonelist(void);
6b74ab97
MG
577#else
578
579static inline void mminit_dprintk(enum mminit_level level,
580 const char *prefix, const char *fmt, ...)
581{
582}
583
708614e6
MG
584static inline void mminit_verify_pageflags_layout(void)
585{
586}
587
68ad8df4
MG
588static inline void mminit_verify_zonelist(void)
589{
590}
6b74ab97 591#endif /* CONFIG_DEBUG_MEMORY_INIT */
2dbb51c4
MG
592
593/* mminit_validate_memmodel_limits is independent of CONFIG_DEBUG_MEMORY_INIT */
594#if defined(CONFIG_SPARSEMEM)
595extern void mminit_validate_memmodel_limits(unsigned long *start_pfn,
596 unsigned long *end_pfn);
597#else
598static inline void mminit_validate_memmodel_limits(unsigned long *start_pfn,
599 unsigned long *end_pfn)
600{
601}
602#endif /* CONFIG_SPARSEMEM */
603
a5f5f91d
MG
604#define NODE_RECLAIM_NOSCAN -2
605#define NODE_RECLAIM_FULL -1
606#define NODE_RECLAIM_SOME 0
607#define NODE_RECLAIM_SUCCESS 1
7c116f2b 608
8b09549c
WY
609#ifdef CONFIG_NUMA
610extern int node_reclaim(struct pglist_data *, gfp_t, unsigned int);
79c28a41 611extern int find_next_best_node(int node, nodemask_t *used_node_mask);
8b09549c
WY
612#else
613static inline int node_reclaim(struct pglist_data *pgdat, gfp_t mask,
614 unsigned int order)
615{
616 return NODE_RECLAIM_NOSCAN;
617}
79c28a41
DH
618static inline int find_next_best_node(int node, nodemask_t *used_node_mask)
619{
620 return NUMA_NO_NODE;
621}
8b09549c
WY
622#endif
623
31d3d348
WF
624extern int hwpoison_filter(struct page *p);
625
7c116f2b
WF
626extern u32 hwpoison_filter_dev_major;
627extern u32 hwpoison_filter_dev_minor;
478c5ffc
WF
628extern u64 hwpoison_filter_flags_mask;
629extern u64 hwpoison_filter_flags_value;
4fd466eb 630extern u64 hwpoison_filter_memcg;
1bfe5feb 631extern u32 hwpoison_filter_enable;
eb36c587 632
dc0ef0df 633extern unsigned long __must_check vm_mmap_pgoff(struct file *, unsigned long,
eb36c587 634 unsigned long, unsigned long,
9fbeb5ab 635 unsigned long, unsigned long);
ca57df79
XQ
636
637extern void set_pageblock_order(void);
730ec8c0 638unsigned int reclaim_clean_pages_from_list(struct zone *zone,
02c6de8d 639 struct list_head *page_list);
d95ea5d1
BZ
640/* The ALLOC_WMARK bits are used as an index to zone->watermark */
641#define ALLOC_WMARK_MIN WMARK_MIN
642#define ALLOC_WMARK_LOW WMARK_LOW
643#define ALLOC_WMARK_HIGH WMARK_HIGH
644#define ALLOC_NO_WATERMARKS 0x04 /* don't check watermarks at all */
645
646/* Mask to get the watermark bits */
647#define ALLOC_WMARK_MASK (ALLOC_NO_WATERMARKS-1)
648
cd04ae1e
MH
649/*
650 * Only MMU archs have async oom victim reclaim - aka oom_reaper so we
651 * cannot assume a reduced access to memory reserves is sufficient for
652 * !MMU
653 */
654#ifdef CONFIG_MMU
655#define ALLOC_OOM 0x08
656#else
657#define ALLOC_OOM ALLOC_NO_WATERMARKS
658#endif
659
6bb15450
MG
660#define ALLOC_HARDER 0x10 /* try to alloc harder */
661#define ALLOC_HIGH 0x20 /* __GFP_HIGH set */
662#define ALLOC_CPUSET 0x40 /* check for correct cpuset */
663#define ALLOC_CMA 0x80 /* allow allocations from CMA areas */
664#ifdef CONFIG_ZONE_DMA32
665#define ALLOC_NOFRAGMENT 0x100 /* avoid mixing pageblock types */
666#else
667#define ALLOC_NOFRAGMENT 0x0
668#endif
736838e9 669#define ALLOC_KSWAPD 0x800 /* allow waking of kswapd, __GFP_KSWAPD_RECLAIM set */
d95ea5d1 670
72b252ae
MG
671enum ttu_flags;
672struct tlbflush_unmap_batch;
673
ce612879
MH
674
675/*
676 * only for MM internal work items which do not depend on
677 * any allocations or locks which might depend on allocations
678 */
679extern struct workqueue_struct *mm_percpu_wq;
680
72b252ae
MG
681#ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
682void try_to_unmap_flush(void);
d950c947 683void try_to_unmap_flush_dirty(void);
3ea27719 684void flush_tlb_batched_pending(struct mm_struct *mm);
72b252ae
MG
685#else
686static inline void try_to_unmap_flush(void)
687{
688}
d950c947
MG
689static inline void try_to_unmap_flush_dirty(void)
690{
691}
3ea27719
MG
692static inline void flush_tlb_batched_pending(struct mm_struct *mm)
693{
694}
72b252ae 695#endif /* CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH */
edf14cdb
VB
696
697extern const struct trace_print_flags pageflag_names[];
698extern const struct trace_print_flags vmaflag_names[];
699extern const struct trace_print_flags gfpflag_names[];
700
a6ffdc07
XQ
701static inline bool is_migrate_highatomic(enum migratetype migratetype)
702{
703 return migratetype == MIGRATE_HIGHATOMIC;
704}
705
706static inline bool is_migrate_highatomic_page(struct page *page)
707{
708 return get_pageblock_migratetype(page) == MIGRATE_HIGHATOMIC;
709}
710
72675e13 711void setup_zone_pageset(struct zone *zone);
19fc7bed
JK
712
713struct migration_target_control {
714 int nid; /* preferred node id */
715 nodemask_t *nmask;
716 gfp_t gfp_mask;
717};
718
b67177ec
NP
719/*
720 * mm/vmalloc.c
721 */
4ad0ae8c 722#ifdef CONFIG_MMU
b67177ec
NP
723int vmap_pages_range_noflush(unsigned long addr, unsigned long end,
724 pgprot_t prot, struct page **pages, unsigned int page_shift);
4ad0ae8c
NP
725#else
726static inline
727int vmap_pages_range_noflush(unsigned long addr, unsigned long end,
728 pgprot_t prot, struct page **pages, unsigned int page_shift)
729{
730 return -EINVAL;
731}
732#endif
733
734void vunmap_range_noflush(unsigned long start, unsigned long end);
b67177ec 735
f4c0d836
YS
736int numa_migrate_prep(struct page *page, struct vm_area_struct *vma,
737 unsigned long addr, int page_nid, int *flags);
738
27674ef6
CH
739void free_zone_device_page(struct page *page);
740
ece1ed7b
MWO
741/*
742 * mm/gup.c
743 */
744struct folio *try_grab_folio(struct page *page, int refs, unsigned int flags);
745
db971418 746#endif /* __MM_INTERNAL_H */