diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/cpu.c | 9 | ||||
-rw-r--r-- | kernel/power/suspend.c | 4 |
2 files changed, 5 insertions, 8 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c index b2b227b82123..d7f07a2da5a6 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c | |||
@@ -113,7 +113,7 @@ EXPORT_SYMBOL_GPL(put_online_cpus); | |||
113 | * get_online_cpus() not an api which is called all that often. | 113 | * get_online_cpus() not an api which is called all that often. |
114 | * | 114 | * |
115 | */ | 115 | */ |
116 | static void cpu_hotplug_begin(void) | 116 | void cpu_hotplug_begin(void) |
117 | { | 117 | { |
118 | cpu_hotplug.active_writer = current; | 118 | cpu_hotplug.active_writer = current; |
119 | 119 | ||
@@ -127,7 +127,7 @@ static void cpu_hotplug_begin(void) | |||
127 | } | 127 | } |
128 | } | 128 | } |
129 | 129 | ||
130 | static void cpu_hotplug_done(void) | 130 | void cpu_hotplug_done(void) |
131 | { | 131 | { |
132 | cpu_hotplug.active_writer = NULL; | 132 | cpu_hotplug.active_writer = NULL; |
133 | mutex_unlock(&cpu_hotplug.lock); | 133 | mutex_unlock(&cpu_hotplug.lock); |
@@ -154,10 +154,7 @@ void cpu_hotplug_enable(void) | |||
154 | cpu_maps_update_done(); | 154 | cpu_maps_update_done(); |
155 | } | 155 | } |
156 | 156 | ||
157 | #else /* #if CONFIG_HOTPLUG_CPU */ | 157 | #endif /* CONFIG_HOTPLUG_CPU */ |
158 | static void cpu_hotplug_begin(void) {} | ||
159 | static void cpu_hotplug_done(void) {} | ||
160 | #endif /* #else #if CONFIG_HOTPLUG_CPU */ | ||
161 | 158 | ||
162 | /* Need to know about CPUs going up/down? */ | 159 | /* Need to know about CPUs going up/down? */ |
163 | int __ref register_cpu_notifier(struct notifier_block *nb) | 160 | int __ref register_cpu_notifier(struct notifier_block *nb) |
diff --git a/kernel/power/suspend.c b/kernel/power/suspend.c index ece04223bb1e..62ee437b5c7e 100644 --- a/kernel/power/suspend.c +++ b/kernel/power/suspend.c | |||
@@ -210,6 +210,7 @@ static int suspend_enter(suspend_state_t state, bool *wakeup) | |||
210 | goto Platform_wake; | 210 | goto Platform_wake; |
211 | } | 211 | } |
212 | 212 | ||
213 | ftrace_stop(); | ||
213 | error = disable_nonboot_cpus(); | 214 | error = disable_nonboot_cpus(); |
214 | if (error || suspend_test(TEST_CPUS)) | 215 | if (error || suspend_test(TEST_CPUS)) |
215 | goto Enable_cpus; | 216 | goto Enable_cpus; |
@@ -232,6 +233,7 @@ static int suspend_enter(suspend_state_t state, bool *wakeup) | |||
232 | 233 | ||
233 | Enable_cpus: | 234 | Enable_cpus: |
234 | enable_nonboot_cpus(); | 235 | enable_nonboot_cpus(); |
236 | ftrace_start(); | ||
235 | 237 | ||
236 | Platform_wake: | 238 | Platform_wake: |
237 | if (need_suspend_ops(state) && suspend_ops->wake) | 239 | if (need_suspend_ops(state) && suspend_ops->wake) |
@@ -265,7 +267,6 @@ int suspend_devices_and_enter(suspend_state_t state) | |||
265 | goto Close; | 267 | goto Close; |
266 | } | 268 | } |
267 | suspend_console(); | 269 | suspend_console(); |
268 | ftrace_stop(); | ||
269 | suspend_test_start(); | 270 | suspend_test_start(); |
270 | error = dpm_suspend_start(PMSG_SUSPEND); | 271 | error = dpm_suspend_start(PMSG_SUSPEND); |
271 | if (error) { | 272 | if (error) { |
@@ -285,7 +286,6 @@ int suspend_devices_and_enter(suspend_state_t state) | |||
285 | suspend_test_start(); | 286 | suspend_test_start(); |
286 | dpm_resume_end(PMSG_RESUME); | 287 | dpm_resume_end(PMSG_RESUME); |
287 | suspend_test_finish("resume devices"); | 288 | suspend_test_finish("resume devices"); |
288 | ftrace_start(); | ||
289 | resume_console(); | 289 | resume_console(); |
290 | Close: | 290 | Close: |
291 | if (need_suspend_ops(state) && suspend_ops->end) | 291 | if (need_suspend_ops(state) && suspend_ops->end) |