]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - include/linux/gfp.h
Merge tag 's390-7.2-3' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
[thirdparty/kernel/linux.git] / include / linux / gfp.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __LINUX_GFP_H
3#define __LINUX_GFP_H
4
cb5a065b
IM
5#include <linux/gfp_types.h>
6
1da177e4 7#include <linux/mmzone.h>
082edb7b 8#include <linux/topology.h>
b951aaff 9#include <linux/alloc_tag.h>
fa759cd7 10#include <linux/cleanup.h>
b951aaff 11#include <linux/sched.h>
1da177e4
LT
12
13struct vm_area_struct;
ddc1a5cb 14struct mempolicy;
1da177e4 15
e19e1b48 16/* Helper macro to avoid gfp flags if they are the default one */
551d4420
LT
17#define __default_gfp(a,b,...) b
18#define default_gfp(...) __default_gfp(,##__VA_ARGS__,GFP_KERNEL)
e19e1b48 19
dd56b046 20/* Convert GFP flags to their corresponding migrate type */
e12ba74d 21#define GFP_MOVABLE_MASK (__GFP_RECLAIMABLE|__GFP_MOVABLE)
016c13da 22#define GFP_MOVABLE_SHIFT 3
6cb06229 23
01c0bfe0 24static inline int gfp_migratetype(const gfp_t gfp_flags)
467c996c 25{
016c13da
MG
26 VM_WARN_ON((gfp_flags & GFP_MOVABLE_MASK) == GFP_MOVABLE_MASK);
27 BUILD_BUG_ON((1UL << GFP_MOVABLE_SHIFT) != ___GFP_MOVABLE);
28 BUILD_BUG_ON((___GFP_MOVABLE >> GFP_MOVABLE_SHIFT) != MIGRATE_MOVABLE);
4d86d4f7
PC
29 BUILD_BUG_ON((___GFP_RECLAIMABLE >> GFP_MOVABLE_SHIFT) != MIGRATE_RECLAIMABLE);
30 BUILD_BUG_ON(((___GFP_MOVABLE | ___GFP_RECLAIMABLE) >>
31 GFP_MOVABLE_SHIFT) != MIGRATE_HIGHATOMIC);
467c996c
MG
32
33 if (unlikely(page_group_by_mobility_disabled))
34 return MIGRATE_UNMOVABLE;
35
36 /* Group based on mobility */
fe573327 37 return (__force unsigned long)(gfp_flags & GFP_MOVABLE_MASK) >> GFP_MOVABLE_SHIFT;
467c996c 38}
dd56b046
MG
39#undef GFP_MOVABLE_MASK
40#undef GFP_MOVABLE_SHIFT
a2f1b424 41
d0164adc
MG
42static inline bool gfpflags_allow_blocking(const gfp_t gfp_flags)
43{
543dfb2d 44 return !!(gfp_flags & __GFP_DIRECT_RECLAIM);
d0164adc
MG
45}
46
97769a53
AS
47static inline bool gfpflags_allow_spinning(const gfp_t gfp_flags)
48{
49 /*
50 * !__GFP_DIRECT_RECLAIM -> direct claim is not allowed.
51 * !__GFP_KSWAPD_RECLAIM -> it's not safe to wake up kswapd.
52 * All GFP_* flags including GFP_NOWAIT use one or both flags.
2aad4edf 53 * alloc_pages_nolock() is the only API that doesn't specify either flag.
97769a53
AS
54 *
55 * This is stronger than GFP_NOWAIT or GFP_ATOMIC because
56 * those are guaranteed to never block on a sleeping lock.
57 * Here we are enforcing that the allocation doesn't ever spin
58 * on any locks (i.e. only trylocks). There is no high level
2aad4edf 59 * GFP_$FOO flag for this use in alloc_pages_nolock() as the
97769a53
AS
60 * regular page allocator doesn't fully support this
61 * allocation mode.
62 */
f90b474a 63 return !!(gfp_flags & __GFP_RECLAIM);
97769a53
AS
64}
65
b70d94ee
CL
66#ifdef CONFIG_HIGHMEM
67#define OPT_ZONE_HIGHMEM ZONE_HIGHMEM
68#else
69#define OPT_ZONE_HIGHMEM ZONE_NORMAL
70#endif
71
4b51d669 72#ifdef CONFIG_ZONE_DMA
b70d94ee
CL
73#define OPT_ZONE_DMA ZONE_DMA
74#else
75#define OPT_ZONE_DMA ZONE_NORMAL
4b51d669 76#endif
b70d94ee 77
4e4785bc 78#ifdef CONFIG_ZONE_DMA32
b70d94ee
CL
79#define OPT_ZONE_DMA32 ZONE_DMA32
80#else
81#define OPT_ZONE_DMA32 ZONE_NORMAL
4e4785bc 82#endif
b70d94ee
CL
83
84/*
85 * GFP_ZONE_TABLE is a word size bitstring that is used for looking up the
ac2e8e40
HL
86 * zone to use given the lowest 4 bits of gfp_t. Entries are GFP_ZONES_SHIFT
87 * bits long and there are 16 of them to cover all possible combinations of
263ff5d8 88 * __GFP_DMA, __GFP_DMA32, __GFP_MOVABLE and __GFP_HIGHMEM.
b70d94ee
CL
89 *
90 * The zone fallback order is MOVABLE=>HIGHMEM=>NORMAL=>DMA32=>DMA.
91 * But GFP_MOVABLE is not only a zone specifier but also an allocation
92 * policy. Therefore __GFP_MOVABLE plus another zone selector is valid.
263ff5d8 93 * Only 1 bit of the lowest 3 bits (DMA,DMA32,HIGHMEM) can be set to "1".
b70d94ee
CL
94 *
95 * bit result
96 * =================
97 * 0x0 => NORMAL
98 * 0x1 => DMA or NORMAL
99 * 0x2 => HIGHMEM or NORMAL
100 * 0x3 => BAD (DMA+HIGHMEM)
4b33b695 101 * 0x4 => DMA32 or NORMAL
b70d94ee
CL
102 * 0x5 => BAD (DMA+DMA32)
103 * 0x6 => BAD (HIGHMEM+DMA32)
104 * 0x7 => BAD (HIGHMEM+DMA32+DMA)
105 * 0x8 => NORMAL (MOVABLE+0)
106 * 0x9 => DMA or NORMAL (MOVABLE+DMA)
107 * 0xa => MOVABLE (Movable is valid only if HIGHMEM is set too)
108 * 0xb => BAD (MOVABLE+HIGHMEM+DMA)
4b33b695 109 * 0xc => DMA32 or NORMAL (MOVABLE+DMA32)
b70d94ee
CL
110 * 0xd => BAD (MOVABLE+DMA32+DMA)
111 * 0xe => BAD (MOVABLE+DMA32+HIGHMEM)
112 * 0xf => BAD (MOVABLE+DMA32+HIGHMEM+DMA)
113 *
b11a7b94 114 * GFP_ZONES_SHIFT must be <= 2 on 32 bit platforms.
b70d94ee
CL
115 */
116
b11a7b94
DW
117#if defined(CONFIG_ZONE_DEVICE) && (MAX_NR_ZONES-1) <= 4
118/* ZONE_DEVICE is not a valid GFP zone specifier */
119#define GFP_ZONES_SHIFT 2
120#else
121#define GFP_ZONES_SHIFT ZONES_SHIFT
122#endif
123
124#if 16 * GFP_ZONES_SHIFT > BITS_PER_LONG
125#error GFP_ZONES_SHIFT too large to create GFP_ZONE_TABLE integer
b70d94ee
CL
126#endif
127
128#define GFP_ZONE_TABLE ( \
b11a7b94
DW
129 (ZONE_NORMAL << 0 * GFP_ZONES_SHIFT) \
130 | (OPT_ZONE_DMA << ___GFP_DMA * GFP_ZONES_SHIFT) \
131 | (OPT_ZONE_HIGHMEM << ___GFP_HIGHMEM * GFP_ZONES_SHIFT) \
132 | (OPT_ZONE_DMA32 << ___GFP_DMA32 * GFP_ZONES_SHIFT) \
133 | (ZONE_NORMAL << ___GFP_MOVABLE * GFP_ZONES_SHIFT) \
134 | (OPT_ZONE_DMA << (___GFP_MOVABLE | ___GFP_DMA) * GFP_ZONES_SHIFT) \
135 | (ZONE_MOVABLE << (___GFP_MOVABLE | ___GFP_HIGHMEM) * GFP_ZONES_SHIFT)\
136 | (OPT_ZONE_DMA32 << (___GFP_MOVABLE | ___GFP_DMA32) * GFP_ZONES_SHIFT)\
b70d94ee
CL
137)
138
139/*
263ff5d8 140 * GFP_ZONE_BAD is a bitmap for all combinations of __GFP_DMA, __GFP_DMA32
b70d94ee
CL
141 * __GFP_HIGHMEM and __GFP_MOVABLE that are not permitted. One flag per
142 * entry starting with bit 0. Bit is set if the combination is not
143 * allowed.
144 */
145#define GFP_ZONE_BAD ( \
16b56cf4
NK
146 1 << (___GFP_DMA | ___GFP_HIGHMEM) \
147 | 1 << (___GFP_DMA | ___GFP_DMA32) \
148 | 1 << (___GFP_DMA32 | ___GFP_HIGHMEM) \
149 | 1 << (___GFP_DMA | ___GFP_DMA32 | ___GFP_HIGHMEM) \
150 | 1 << (___GFP_MOVABLE | ___GFP_HIGHMEM | ___GFP_DMA) \
151 | 1 << (___GFP_MOVABLE | ___GFP_DMA32 | ___GFP_DMA) \
152 | 1 << (___GFP_MOVABLE | ___GFP_DMA32 | ___GFP_HIGHMEM) \
153 | 1 << (___GFP_MOVABLE | ___GFP_DMA32 | ___GFP_DMA | ___GFP_HIGHMEM) \
b70d94ee
CL
154)
155
156static inline enum zone_type gfp_zone(gfp_t flags)
157{
158 enum zone_type z;
16b56cf4 159 int bit = (__force int) (flags & GFP_ZONEMASK);
b70d94ee 160
b11a7b94
DW
161 z = (GFP_ZONE_TABLE >> (bit * GFP_ZONES_SHIFT)) &
162 ((1 << GFP_ZONES_SHIFT) - 1);
82d4b577 163 VM_BUG_ON((GFP_ZONE_BAD >> bit) & 1);
b70d94ee 164 return z;
4e4785bc
CL
165}
166
1da177e4
LT
167/*
168 * There is only one page-allocator function, and two main namespaces to
169 * it. The alloc_page*() variants return 'struct page *' and as such
170 * can allocate highmem pages, the *get*page*() variants return
171 * virtual kernel addresses to the allocated page(s).
172 */
173
54a6eb5c
MG
174static inline int gfp_zonelist(gfp_t flags)
175{
c00eb15a
YB
176#ifdef CONFIG_NUMA
177 if (unlikely(flags & __GFP_THISNODE))
178 return ZONELIST_NOFALLBACK;
179#endif
180 return ZONELIST_FALLBACK;
54a6eb5c
MG
181}
182
1c00f936
DC
183/*
184 * gfp flag masking for nested internal allocations.
185 *
186 * For code that needs to do allocations inside the public allocation API (e.g.
187 * memory allocation tracking code) the allocations need to obey the caller
188 * allocation context constrains to prevent allocation context mismatches (e.g.
189 * GFP_KERNEL allocations in GFP_NOFS contexts) from potential deadlock
190 * situations.
191 *
192 * It is also assumed that these nested allocations are for internal kernel
193 * object storage purposes only and are not going to be used for DMA, etc. Hence
194 * we strip out all the zone information and leave just the context information
195 * intact.
196 *
197 * Further, internal allocations must fail before the higher level allocation
198 * can fail, so we must make them fail faster and fail silently. We also don't
199 * want them to deplete emergency reserves. Hence nested allocations must be
200 * prepared for these allocations to fail.
201 */
202static inline gfp_t gfp_nested_mask(gfp_t flags)
203{
204 return ((flags & (GFP_KERNEL | GFP_ATOMIC | __GFP_NOLOCKDEP)) |
205 (__GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN));
206}
207
1da177e4
LT
208/*
209 * We get the zone list from the current node and the gfp_mask.
cb152a1a 210 * This zone list contains a maximum of MAX_NUMNODES*MAX_NR_ZONES zones.
54a6eb5c
MG
211 * There are two zonelists per node, one for all zones with memory and
212 * one containing just zones from the node the zonelist belongs to.
1da177e4 213 *
d3c251ab
MR
214 * For the case of non-NUMA systems the NODE_DATA() gets optimized to
215 * &contig_page_data at compile-time.
1da177e4 216 */
0e88460d
MG
217static inline struct zonelist *node_zonelist(int nid, gfp_t flags)
218{
54a6eb5c 219 return NODE_DATA(nid)->node_zonelists + gfp_zonelist(flags);
0e88460d 220}
1da177e4
LT
221
222#ifndef HAVE_ARCH_FREE_PAGE
223static inline void arch_free_page(struct page *page, int order) { }
224#endif
cc102509
NP
225#ifndef HAVE_ARCH_ALLOC_PAGE
226static inline void arch_alloc_page(struct page *page, int order) { }
227#endif
1da177e4 228
b951aaff 229struct page *__alloc_pages_noprof(gfp_t gfp, unsigned int order, int preferred_nid,
84172f4b 230 nodemask_t *nodemask);
b951aaff
SB
231#define __alloc_pages(...) alloc_hooks(__alloc_pages_noprof(__VA_ARGS__))
232
233struct folio *__folio_alloc_noprof(gfp_t gfp, unsigned int order, int preferred_nid,
cc09cb13 234 nodemask_t *nodemask);
b951aaff 235#define __folio_alloc(...) alloc_hooks(__folio_alloc_noprof(__VA_ARGS__))
e4048e5d 236
b951aaff 237unsigned long alloc_pages_bulk_noprof(gfp_t gfp, int preferred_nid,
387ba26f 238 nodemask_t *nodemask, int nr_pages,
0f87d9d3 239 struct page **page_array);
b951aaff 240#define __alloc_pages_bulk(...) alloc_hooks(alloc_pages_bulk_noprof(__VA_ARGS__))
387ba26f 241
60ced581
RR
242void free_pages_bulk(struct page **page_array, unsigned long nr_pages);
243
6bf9b5b4 244unsigned long alloc_pages_bulk_mempolicy_noprof(gfp_t gfp,
c00b6b96
CW
245 unsigned long nr_pages,
246 struct page **page_array);
6bf9b5b4
LC
247#define alloc_pages_bulk_mempolicy(...) \
248 alloc_hooks(alloc_pages_bulk_mempolicy_noprof(__VA_ARGS__))
c00b6b96 249
387ba26f 250/* Bulk allocate order-0 pages */
6bf9b5b4 251#define alloc_pages_bulk(_gfp, _nr_pages, _page_array) \
c8b97953 252 __alloc_pages_bulk(_gfp, numa_mem_id(), NULL, _nr_pages, _page_array)
387ba26f 253
a2afc59f 254static inline unsigned long
6bf9b5b4 255alloc_pages_bulk_node_noprof(gfp_t gfp, int nid, unsigned long nr_pages,
b951aaff 256 struct page **page_array)
a2afc59f
URS
257{
258 if (nid == NUMA_NO_NODE)
259 nid = numa_mem_id();
260
c8b97953 261 return alloc_pages_bulk_noprof(gfp, nid, NULL, nr_pages, page_array);
a2afc59f
URS
262}
263
6bf9b5b4
LC
264#define alloc_pages_bulk_node(...) \
265 alloc_hooks(alloc_pages_bulk_node_noprof(__VA_ARGS__))
b951aaff 266
dec1d352
YS
267static inline void warn_if_node_offline(int this_node, gfp_t gfp_mask)
268{
269 gfp_t warn_gfp = gfp_mask & (__GFP_THISNODE|__GFP_NOWARN);
270
271 if (warn_gfp != (__GFP_THISNODE|__GFP_NOWARN))
272 return;
273
274 if (node_online(this_node))
275 return;
276
277 pr_warn("%pGg allocation from offline node %d\n", &gfp_mask, this_node);
278 dump_stack();
279}
280
96db800f
VB
281/*
282 * Allocate pages, preferring the node given as nid. The node must be valid and
283 * online. For more general interface, see alloc_pages_node().
284 */
285static inline struct page *
b951aaff 286__alloc_pages_node_noprof(int nid, gfp_t gfp_mask, unsigned int order)
1da177e4 287{
0bc35a97 288 VM_BUG_ON(nid < 0 || nid >= MAX_NUMNODES);
dec1d352 289 warn_if_node_offline(nid, gfp_mask);
819a6928 290
b951aaff 291 return __alloc_pages_noprof(gfp_mask, order, nid, NULL);
1da177e4
LT
292}
293
b951aaff
SB
294#define __alloc_pages_node(...) alloc_hooks(__alloc_pages_node_noprof(__VA_ARGS__))
295
cc09cb13 296static inline
b951aaff 297struct folio *__folio_alloc_node_noprof(gfp_t gfp, unsigned int order, int nid)
cc09cb13
MWO
298{
299 VM_BUG_ON(nid < 0 || nid >= MAX_NUMNODES);
dec1d352 300 warn_if_node_offline(nid, gfp);
cc09cb13 301
b951aaff 302 return __folio_alloc_noprof(gfp, order, nid, NULL);
cc09cb13
MWO
303}
304
b951aaff
SB
305#define __folio_alloc_node(...) alloc_hooks(__folio_alloc_node_noprof(__VA_ARGS__))
306
96db800f
VB
307/*
308 * Allocate pages, preferring the node given as nid. When nid == NUMA_NO_NODE,
82c1fc71
VB
309 * prefer the current CPU's closest node. Otherwise node must be valid and
310 * online.
96db800f 311 */
b951aaff
SB
312static inline struct page *alloc_pages_node_noprof(int nid, gfp_t gfp_mask,
313 unsigned int order)
6484eb3e 314{
0bc35a97 315 if (nid == NUMA_NO_NODE)
82c1fc71 316 nid = numa_mem_id();
6484eb3e 317
b951aaff 318 return __alloc_pages_node_noprof(nid, gfp_mask, order);
6484eb3e
MG
319}
320
b951aaff
SB
321#define alloc_pages_node(...) alloc_hooks(alloc_pages_node_noprof(__VA_ARGS__))
322
1da177e4 323#ifdef CONFIG_NUMA
b951aaff 324struct page *alloc_pages_noprof(gfp_t gfp, unsigned int order);
b951aaff 325struct folio *folio_alloc_noprof(gfp_t gfp, unsigned int order);
a19621ed
KW
326struct folio *folio_alloc_mpol_noprof(gfp_t gfp, unsigned int order,
327 struct mempolicy *mpol, pgoff_t ilx, int nid);
b951aaff 328struct folio *vma_alloc_folio_noprof(gfp_t gfp, int order, struct vm_area_struct *vma,
6359c39c 329 unsigned long addr);
1da177e4 330#else
b951aaff 331static inline struct page *alloc_pages_noprof(gfp_t gfp_mask, unsigned int order)
43ee5b6d 332{
b951aaff 333 return alloc_pages_node_noprof(numa_node_id(), gfp_mask, order);
43ee5b6d 334}
b951aaff 335static inline struct folio *folio_alloc_noprof(gfp_t gfp, unsigned int order)
cc09cb13 336{
0a6fff20 337 return __folio_alloc_node_noprof(gfp, order, numa_node_id());
cc09cb13 338}
a19621ed
KW
339static inline struct folio *folio_alloc_mpol_noprof(gfp_t gfp, unsigned int order,
340 struct mempolicy *mpol, pgoff_t ilx, int nid)
341{
342 return folio_alloc_noprof(gfp, order);
343}
eb954934
AB
344static inline struct folio *vma_alloc_folio_noprof(gfp_t gfp, int order,
345 struct vm_area_struct *vma, unsigned long addr)
346{
347 return folio_alloc_noprof(gfp, order);
348}
1da177e4 349#endif
b951aaff
SB
350
351#define alloc_pages(...) alloc_hooks(alloc_pages_noprof(__VA_ARGS__))
b951aaff 352#define folio_alloc(...) alloc_hooks(folio_alloc_noprof(__VA_ARGS__))
a19621ed 353#define folio_alloc_mpol(...) alloc_hooks(folio_alloc_mpol_noprof(__VA_ARGS__))
b951aaff
SB
354#define vma_alloc_folio(...) alloc_hooks(vma_alloc_folio_noprof(__VA_ARGS__))
355
1da177e4 356#define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0)
b951aaff
SB
357
358static inline struct page *alloc_page_vma_noprof(gfp_t gfp,
adf88aa8
MWO
359 struct vm_area_struct *vma, unsigned long addr)
360{
6359c39c 361 struct folio *folio = vma_alloc_folio_noprof(gfp, 0, vma, addr);
adf88aa8
MWO
362
363 return &folio->page;
364}
b951aaff
SB
365#define alloc_page_vma(...) alloc_hooks(alloc_page_vma_noprof(__VA_ARGS__))
366
99253de5 367struct page *alloc_pages_nolock_noprof(gfp_t gfp_flags, int nid, unsigned int order);
2aad4edf 368#define alloc_pages_nolock(...) alloc_hooks(alloc_pages_nolock_noprof(__VA_ARGS__))
97769a53 369
b951aaff
SB
370extern unsigned long get_free_pages_noprof(gfp_t gfp_mask, unsigned int order);
371#define __get_free_pages(...) alloc_hooks(get_free_pages_noprof(__VA_ARGS__))
1da177e4 372
b951aaff
SB
373extern unsigned long get_zeroed_page_noprof(gfp_t gfp_mask);
374#define get_zeroed_page(...) alloc_hooks(get_zeroed_page_noprof(__VA_ARGS__))
375
376void *alloc_pages_exact_noprof(size_t size, gfp_t gfp_mask) __alloc_size(1);
377#define alloc_pages_exact(...) alloc_hooks(alloc_pages_exact_noprof(__VA_ARGS__))
1da177e4 378
2be0ffe2
TT
379void free_pages_exact(void *virt, size_t size);
380
b951aaff
SB
381__meminit void *alloc_pages_exact_nid_noprof(int nid, size_t size, gfp_t gfp_mask) __alloc_size(2);
382#define alloc_pages_exact_nid(...) \
383 alloc_hooks(alloc_pages_exact_nid_noprof(__VA_ARGS__))
384
385#define __get_free_page(gfp_mask) \
386 __get_free_pages((gfp_mask), 0)
1da177e4 387
b951aaff
SB
388#define __get_dma_pages(gfp_mask, order) \
389 __get_free_pages((gfp_mask) | GFP_DMA, (order))
1da177e4 390
b3c97528 391extern void __free_pages(struct page *page, unsigned int order);
8c57b687 392extern void free_pages_nolock(struct page *page, unsigned int order);
b3c97528 393extern void free_pages(unsigned long addr, unsigned int order);
1da177e4
LT
394
395#define __free_page(page) __free_pages((page), 0)
fd23855e 396#define free_page(addr) free_pages((addr), 0)
1da177e4 397
c4fbed4b 398void page_alloc_init_cpuhp(void);
0acc67c4 399bool decay_pcp_high(struct zone *zone, struct per_cpu_pages *pcp);
4037d452 400void drain_zone_pages(struct zone *zone, struct per_cpu_pages *pcp);
93481ff0
VB
401void drain_all_pages(struct zone *zone);
402void drain_local_pages(struct zone *zone);
1da177e4 403
0e1cc95b 404void page_alloc_init_late(void);
5cec4eb7 405void setup_pcp_cacheinfo(unsigned int cpu);
0e1cc95b 406
f90ac398
MG
407/*
408 * gfp_allowed_mask is set to GFP_BOOT_MASK during early boot to restrict what
409 * GFP flags are used before interrupts are enabled. Once interrupts are
410 * enabled, it is set to __GFP_BITS_MASK while the system is running. During
411 * hibernation, it is used by PM to avoid I/O during memory allocation while
412 * devices are suspended.
413 */
dcce284a
BH
414extern gfp_t gfp_allowed_mask;
415
c93bdd0e
MG
416/* Returns true if the gfp_mask allows use of ALLOC_NO_WATERMARK */
417bool gfp_pfmemalloc_allowed(gfp_t gfp_mask);
418
53a9b464
VB
419/* A helper for checking if gfp includes all the specified flags */
420static inline bool gfp_has_flags(gfp_t gfp, gfp_t flags)
421{
422 return (gfp & flags) == flags;
423}
424
07f44ac3 425static inline bool gfp_has_io_fs(gfp_t gfp)
f90ac398 426{
53a9b464 427 return gfp_has_flags(gfp, __GFP_IO | __GFP_FS);
f90ac398 428}
07f44ac3 429
803de900
VB
430/*
431 * Check if the gfp flags allow compaction - GFP_NOIO is a really
432 * tricky context because the migration might require IO.
433 */
434static inline bool gfp_compaction_allowed(gfp_t gfp_mask)
435{
436 return IS_ENABLED(CONFIG_COMPACTION) && (gfp_mask & __GFP_IO);
437}
438
07f44ac3 439extern gfp_t vma_thp_gfp_mask(struct vm_area_struct *vma);
f90ac398 440
8df995f6 441#ifdef CONFIG_CONTIG_ALLOC
d1554fb6
ZY
442
443typedef unsigned int __bitwise acr_flags_t;
444#define ACR_FLAGS_NONE ((__force acr_flags_t)0) // ordinary allocation request
445#define ACR_FLAGS_CMA ((__force acr_flags_t)BIT(0)) // allocate for CMA
446
041d3a8c 447/* The below functions must be run on a range from a single zone. */
e0c13267
KW
448int alloc_contig_frozen_range_noprof(unsigned long start, unsigned long end,
449 acr_flags_t alloc_flags, gfp_t gfp_mask);
450#define alloc_contig_frozen_range(...) \
451 alloc_hooks(alloc_contig_frozen_range_noprof(__VA_ARGS__))
452
453int alloc_contig_range_noprof(unsigned long start, unsigned long end,
454 acr_flags_t alloc_flags, gfp_t gfp_mask);
455#define alloc_contig_range(...) \
456 alloc_hooks(alloc_contig_range_noprof(__VA_ARGS__))
457
458struct page *alloc_contig_frozen_pages_noprof(unsigned long nr_pages,
459 gfp_t gfp_mask, int nid, nodemask_t *nodemask);
460#define alloc_contig_frozen_pages(...) \
461 alloc_hooks(alloc_contig_frozen_pages_noprof(__VA_ARGS__))
462
463struct page *alloc_contig_pages_noprof(unsigned long nr_pages, gfp_t gfp_mask,
464 int nid, nodemask_t *nodemask);
465#define alloc_contig_pages(...) \
466 alloc_hooks(alloc_contig_pages_noprof(__VA_ARGS__))
467
468void free_contig_frozen_range(unsigned long pfn, unsigned long nr_pages);
78fa5150 469void free_contig_range(unsigned long pfn, unsigned long nr_pages);
01152bd2 470#endif
041d3a8c 471
4aa4abf1
RR
472void __free_contig_range(unsigned long pfn, unsigned long nr_pages);
473
fa759cd7
PT
474DEFINE_FREE(free_page, void *, free_page((unsigned long)_T))
475
1da177e4 476#endif /* __LINUX_GFP_H */