diff options
Diffstat (limited to 'include/linux/gfp.h')
-rw-r--r-- | include/linux/gfp.h | 16 |
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); | |||
368 | void drain_all_pages(void); | 368 | void drain_all_pages(void); |
369 | void drain_local_pages(void *dummy); | 369 | void 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 | */ | ||
371 | extern gfp_t gfp_allowed_mask; | 378 | extern gfp_t gfp_allowed_mask; |
372 | 379 | ||
373 | extern void pm_restrict_gfp_mask(void); | 380 | extern void pm_restrict_gfp_mask(void); |
374 | extern void pm_restore_gfp_mask(void); | 381 | extern void pm_restore_gfp_mask(void); |
375 | 382 | ||
383 | #ifdef CONFIG_PM_SLEEP | ||
384 | extern bool pm_suspended_storage(void); | ||
385 | #else | ||
386 | static 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 */ |