aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/power/hibernate.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-11-21 15:32:24 -0500
committerTejun Heo <tj@kernel.org>2011-11-21 15:32:24 -0500
commit03afed8bc296fa70186ba832c1126228bb992465 (patch)
tree96d0a6a9bffdcfc678d31f21caa88e43693bde94 /kernel/power/hibernate.c
parent376fede80e74d98b49d1ba9ac18f23c9fd026ddd (diff)
freezer: clean up freeze_processes() failure path
freeze_processes() failure path is rather messy. Freezing is canceled for workqueues and tasks which aren't frozen yet but frozen tasks are left alone and should be thawed by the caller and of course some callers (xen and kexec) didn't do it. This patch updates __thaw_task() to handle cancelation correctly and makes freeze_processes() and freeze_kernel_threads() call thaw_processes() on failure instead so that the system is fully thawed on failure. Unnecessary [suspend_]thaw_processes() calls are removed from kernel/power/hibernate.c, suspend.c and user.c. While at it, restructure error checking if clause in suspend_prepare() to be less weird. -v2: Srivatsa spotted missing removal of suspend_thaw_processes() in suspend_prepare() and error in commit message. Updated. Signed-off-by: Tejun Heo <tj@kernel.org> Acked-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/power/hibernate.c')
-rw-r--r--kernel/power/hibernate.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 196c01268ebd..ba2319ffc860 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -607,17 +607,6 @@ static void power_down(void)
607 while(1); 607 while(1);
608} 608}
609 609
610static int prepare_processes(void)
611{
612 int error = 0;
613
614 if (freeze_processes()) {
615 error = -EBUSY;
616 thaw_processes();
617 }
618 return error;
619}
620
621/** 610/**
622 * hibernate - Carry out system hibernation, including saving the image. 611 * hibernate - Carry out system hibernation, including saving the image.
623 */ 612 */
@@ -650,7 +639,7 @@ int hibernate(void)
650 sys_sync(); 639 sys_sync();
651 printk("done.\n"); 640 printk("done.\n");
652 641
653 error = prepare_processes(); 642 error = freeze_processes();
654 if (error) 643 if (error)
655 goto Finish; 644 goto Finish;
656 645
@@ -811,7 +800,7 @@ static int software_resume(void)
811 goto close_finish; 800 goto close_finish;
812 801
813 pr_debug("PM: Preparing processes for restore.\n"); 802 pr_debug("PM: Preparing processes for restore.\n");
814 error = prepare_processes(); 803 error = freeze_processes();
815 if (error) { 804 if (error) {
816 swsusp_close(FMODE_READ); 805 swsusp_close(FMODE_READ);
817 goto Done; 806 goto Done;