Freezer: remove redundant check in try_to_freeze_tasks
[deliverable/linux.git] / include / linux / suspend.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_SWSUSP_H
2#define _LINUX_SWSUSP_H
3
543b9fd3 4#if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32) || defined(CONFIG_PPC64)
1da177e4
LT
5#include <asm/suspend.h>
6#endif
7#include <linux/swap.h>
8#include <linux/notifier.h>
1da177e4
LT
9#include <linux/init.h>
10#include <linux/pm.h>
7be98234 11#include <linux/mm.h>
1da177e4 12
8357376d
RW
13/* struct pbe is used for creating lists of pages that should be restored
14 * atomically during the resume from disk, because the page frames they have
15 * occupied before the suspend are in use.
16 */
dcbb5a54 17struct pbe {
8357376d
RW
18 void *address; /* address of the copy */
19 void *orig_address; /* original address of a page */
7088a5c0 20 struct pbe *next;
dcbb5a54 21};
1da177e4 22
1da177e4
LT
23/* mm/page_alloc.c */
24extern void drain_local_pages(void);
25extern void mark_free_pages(struct zone *zone);
26
74dfd666 27#if defined(CONFIG_PM) && defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
46cd2f32
RW
28extern int pm_prepare_console(void);
29extern void pm_restore_console(void);
30#else
31static inline int pm_prepare_console(void) { return 0; }
32static inline void pm_restore_console(void) {}
74dfd666
RW
33#endif
34
a3d25c27
RW
35/**
36 * struct hibernation_ops - hibernation platform support
37 *
38 * The methods in this structure allow a platform to override the default
39 * mechanism of shutting down the machine during a hibernation transition.
40 *
41 * All three methods must be assigned.
42 *
43 * @prepare: prepare system for hibernation
44 * @enter: shut down system after state has been saved to disk
45 * @finish: finish/clean up after state has been reloaded
a634cc10
RW
46 * @pre_restore: prepare system for the restoration from a hibernation image
47 * @restore_cleanup: clean up after a failing image restoration
a3d25c27
RW
48 */
49struct hibernation_ops {
50 int (*prepare)(void);
51 int (*enter)(void);
52 void (*finish)(void);
a634cc10
RW
53 int (*pre_restore)(void);
54 void (*restore_cleanup)(void);
a3d25c27
RW
55};
56
74dfd666 57#if defined(CONFIG_PM) && defined(CONFIG_SOFTWARE_SUSPEND)
74dfd666 58/* kernel/power/snapshot.c */
940d67f6
JB
59extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
60static inline void register_nosave_region(unsigned long b, unsigned long e)
61{
62 __register_nosave_region(b, e, 0);
63}
64static inline void register_nosave_region_late(unsigned long b, unsigned long e)
65{
66 __register_nosave_region(b, e, 1);
67}
74dfd666
RW
68extern int swsusp_page_is_forbidden(struct page *);
69extern void swsusp_set_page_free(struct page *);
70extern void swsusp_unset_page_free(struct page *);
71extern unsigned long get_safe_page(gfp_t gfp_mask);
a3d25c27
RW
72
73extern void hibernation_set_ops(struct hibernation_ops *ops);
74extern int hibernate(void);
1da177e4 75#else
74dfd666 76static inline void register_nosave_region(unsigned long b, unsigned long e) {}
940d67f6 77static inline void register_nosave_region_late(unsigned long b, unsigned long e) {}
74dfd666
RW
78static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
79static inline void swsusp_set_page_free(struct page *p) {}
80static inline void swsusp_unset_page_free(struct page *p) {}
a3d25c27
RW
81
82static inline void hibernation_set_ops(struct hibernation_ops *ops) {}
83static inline int hibernate(void) { return -ENOSYS; }
74dfd666 84#endif /* defined(CONFIG_PM) && defined(CONFIG_SOFTWARE_SUSPEND) */
1da177e4 85
1da177e4
LT
86void save_processor_state(void);
87void restore_processor_state(void);
88struct saved_context;
89void __save_processor_state(struct saved_context *ctxt);
90void __restore_processor_state(struct saved_context *ctxt);
25761b6e 91
1da177e4 92#endif /* _LINUX_SWSUSP_H */
This page took 0.374778 seconds and 5 git commands to generate.