Commit af258f51 authored by Johannes Berg's avatar Johannes Berg Committed by Len Brown

Suspend: Invoke suspend notifications after console switch

In order to fix APM emulation it is necessary to enable apm-emulation
notifications for suspends triggered in various ways via the suspend
notifiers.  However, this will cause the systems using APM emulation
to lock up between X being needed to switch away from the VT and X
already waiting for resume in the APM ioctl.

This patch moves the console switch (if enabled) before the suspend
notification (and after the resume notification) to avoid this issue.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 17b7a89c
...@@ -175,12 +175,12 @@ static int suspend_prepare(void) ...@@ -175,12 +175,12 @@ static int suspend_prepare(void)
if (!suspend_ops || !suspend_ops->enter) if (!suspend_ops || !suspend_ops->enter)
return -EPERM; return -EPERM;
pm_prepare_console();
error = pm_notifier_call_chain(PM_SUSPEND_PREPARE); error = pm_notifier_call_chain(PM_SUSPEND_PREPARE);
if (error) if (error)
goto Finish; goto Finish;
pm_prepare_console();
if (suspend_freeze_processes()) { if (suspend_freeze_processes()) {
error = -EAGAIN; error = -EAGAIN;
goto Thaw; goto Thaw;
...@@ -200,9 +200,9 @@ static int suspend_prepare(void) ...@@ -200,9 +200,9 @@ static int suspend_prepare(void)
Thaw: Thaw:
suspend_thaw_processes(); suspend_thaw_processes();
pm_restore_console();
Finish: Finish:
pm_notifier_call_chain(PM_POST_SUSPEND); pm_notifier_call_chain(PM_POST_SUSPEND);
pm_restore_console();
return error; return error;
} }
...@@ -309,8 +309,8 @@ int suspend_devices_and_enter(suspend_state_t state) ...@@ -309,8 +309,8 @@ int suspend_devices_and_enter(suspend_state_t state)
static void suspend_finish(void) static void suspend_finish(void)
{ {
suspend_thaw_processes(); suspend_thaw_processes();
pm_restore_console();
pm_notifier_call_chain(PM_POST_SUSPEND); pm_notifier_call_chain(PM_POST_SUSPEND);
pm_restore_console();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment