mirror of https://gitee.com/openkylin/linux.git
[PATCH] PM: Fix swsusp debug mode testproc
The 'testproc' swsusp debug mode thaws tasks twice in a row, which is _very_ confusing. Fix that. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
06df6a5c18
commit
2d87595ea6
|
@ -151,7 +151,7 @@ int pm_suspend_disk(void)
|
||||||
return error;
|
return error;
|
||||||
|
|
||||||
if (pm_disk_mode == PM_DISK_TESTPROC)
|
if (pm_disk_mode == PM_DISK_TESTPROC)
|
||||||
goto Thaw;
|
return 0;
|
||||||
|
|
||||||
suspend_console();
|
suspend_console();
|
||||||
error = device_suspend(PMSG_FREEZE);
|
error = device_suspend(PMSG_FREEZE);
|
||||||
|
|
Loading…
Reference in New Issue