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