Skip to content

Commit

Permalink
Suspend: Invoke suspend notifications after console switch
Browse files Browse the repository at this point in the history
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: Johannes Berg <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
jmberg authored and lenb committed Feb 1, 2008
1 parent 17b7a89 commit af258f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kernel/power/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ static int suspend_prepare(void)
if (!suspend_ops || !suspend_ops->enter)
return -EPERM;

pm_prepare_console();

error = pm_notifier_call_chain(PM_SUSPEND_PREPARE);
if (error)
goto Finish;

pm_prepare_console();

if (suspend_freeze_processes()) {
error = -EAGAIN;
goto Thaw;
Expand All @@ -200,9 +200,9 @@ static int suspend_prepare(void)

Thaw:
suspend_thaw_processes();
pm_restore_console();
Finish:
pm_notifier_call_chain(PM_POST_SUSPEND);
pm_restore_console();
return error;
}

Expand Down Expand Up @@ -309,8 +309,8 @@ int suspend_devices_and_enter(suspend_state_t state)
static void suspend_finish(void)
{
suspend_thaw_processes();
pm_restore_console();
pm_notifier_call_chain(PM_POST_SUSPEND);
pm_restore_console();
}


Expand Down

0 comments on commit af258f5

Please sign in to comment.