diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2007-11-19 17:49:18 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-02-01 18:30:54 -0500 |
commit | 825257569350e913bee3bc918508c0aa6e3398cd (patch) | |
tree | 2d016a04dfc09938565d5e932f0d2d5e43fb6bdd /kernel | |
parent | 90dda1cb6ace6abd777f84bf051c4f86fa58986a (diff) |
PM: Convert PM notifiers to out-of-line code
This patch (as1008b) converts the PM notifier routines from inline
calls to out-of-line code. It also prevents pm_chain_head from
being created when CONFIG_PM_SLEEP isn't enabled, and EXPORTs the
notifier registration and unregistration routines.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/power/main.c | 28 | ||||
-rw-r--r-- | kernel/power/power.h | 12 |
2 files changed, 30 insertions, 10 deletions
diff --git a/kernel/power/main.c b/kernel/power/main.c index fc717b836828..0a9f269075ee 100644 --- a/kernel/power/main.c +++ b/kernel/power/main.c | |||
@@ -24,13 +24,37 @@ | |||
24 | 24 | ||
25 | #include "power.h" | 25 | #include "power.h" |
26 | 26 | ||
27 | BLOCKING_NOTIFIER_HEAD(pm_chain_head); | ||
28 | |||
29 | DEFINE_MUTEX(pm_mutex); | 27 | DEFINE_MUTEX(pm_mutex); |
30 | 28 | ||
31 | unsigned int pm_flags; | 29 | unsigned int pm_flags; |
32 | EXPORT_SYMBOL(pm_flags); | 30 | EXPORT_SYMBOL(pm_flags); |
33 | 31 | ||
32 | #ifdef CONFIG_PM_SLEEP | ||
33 | |||
34 | /* Routines for PM-transition notifications */ | ||
35 | |||
36 | static BLOCKING_NOTIFIER_HEAD(pm_chain_head); | ||
37 | |||
38 | int register_pm_notifier(struct notifier_block *nb) | ||
39 | { | ||
40 | return blocking_notifier_chain_register(&pm_chain_head, nb); | ||
41 | } | ||
42 | EXPORT_SYMBOL_GPL(register_pm_notifier); | ||
43 | |||
44 | int unregister_pm_notifier(struct notifier_block *nb) | ||
45 | { | ||
46 | return blocking_notifier_chain_unregister(&pm_chain_head, nb); | ||
47 | } | ||
48 | EXPORT_SYMBOL_GPL(unregister_pm_notifier); | ||
49 | |||
50 | int pm_notifier_call_chain(unsigned long val) | ||
51 | { | ||
52 | return (blocking_notifier_call_chain(&pm_chain_head, val, NULL) | ||
53 | == NOTIFY_BAD) ? -EINVAL : 0; | ||
54 | } | ||
55 | |||
56 | #endif /* CONFIG_PM_SLEEP */ | ||
57 | |||
34 | #ifdef CONFIG_PM_DEBUG | 58 | #ifdef CONFIG_PM_DEBUG |
35 | int pm_test_level = TEST_NONE; | 59 | int pm_test_level = TEST_NONE; |
36 | 60 | ||
diff --git a/kernel/power/power.h b/kernel/power/power.h index f9f0d4d26c50..a9732fd12239 100644 --- a/kernel/power/power.h +++ b/kernel/power/power.h | |||
@@ -172,14 +172,10 @@ static inline int suspend_devices_and_enter(suspend_state_t state) | |||
172 | } | 172 | } |
173 | #endif /* !CONFIG_SUSPEND */ | 173 | #endif /* !CONFIG_SUSPEND */ |
174 | 174 | ||
175 | /* kernel/power/common.c */ | 175 | #ifdef CONFIG_PM_SLEEP |
176 | extern struct blocking_notifier_head pm_chain_head; | 176 | /* kernel/power/main.c */ |
177 | 177 | extern int pm_notifier_call_chain(unsigned long val); | |
178 | static inline int pm_notifier_call_chain(unsigned long val) | 178 | #endif |
179 | { | ||
180 | return (blocking_notifier_call_chain(&pm_chain_head, val, NULL) | ||
181 | == NOTIFY_BAD) ? -EINVAL : 0; | ||
182 | } | ||
183 | 179 | ||
184 | #ifdef CONFIG_HIGHMEM | 180 | #ifdef CONFIG_HIGHMEM |
185 | unsigned int count_highmem_pages(void); | 181 | unsigned int count_highmem_pages(void); |