aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/gfp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/gfp.h')
-rw-r--r--include/linux/gfp.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/gfp.h b/include/linux/gfp.h
index 656295865d58..91812df1351a 100644
--- a/include/linux/gfp.h
+++ b/include/linux/gfp.h
@@ -368,9 +368,25 @@ void drain_zone_pages(struct zone *zone, struct per_cpu_pages *pcp);
368void drain_all_pages(void); 368void drain_all_pages(void);
369void drain_local_pages(void *dummy); 369void drain_local_pages(void *dummy);
370 370
371/*
372 * gfp_allowed_mask is set to GFP_BOOT_MASK during early boot to restrict what
373 * GFP flags are used before interrupts are enabled. Once interrupts are
374 * enabled, it is set to __GFP_BITS_MASK while the system is running. During
375 * hibernation, it is used by PM to avoid I/O during memory allocation while
376 * devices are suspended.
377 */
371extern gfp_t gfp_allowed_mask; 378extern gfp_t gfp_allowed_mask;
372 379
373extern void pm_restrict_gfp_mask(void); 380extern void pm_restrict_gfp_mask(void);
374extern void pm_restore_gfp_mask(void); 381extern void pm_restore_gfp_mask(void);
375 382
383#ifdef CONFIG_PM_SLEEP
384extern bool pm_suspended_storage(void);
385#else
386static inline bool pm_suspended_storage(void)
387{
388 return false;
389}
390#endif /* CONFIG_PM_SLEEP */
391
376#endif /* __LINUX_GFP_H */ 392#endif /* __LINUX_GFP_H */