aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/power
diff options
context:
space:
mode:
authorSrivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>2011-11-18 17:02:42 -0500
committerRafael J. Wysocki <rjw@sisk.pl>2011-11-18 17:02:42 -0500
commitaa9a7b11821e883a7b93ecce190881e0ea48648b (patch)
treeb917fb563df2d27b95d6012afd9bf63237a7e3d5 /kernel/power
parent88995e809f8a8115f30db24696c9137aad93d570 (diff)
PM / Hibernate: Fix the early termination of test modes
Commit 2aede851ddf08666f68ffc17be446420e9d2a056 (PM / Hibernate: Freeze kernel threads after preallocating memory) postponed the freezing of kernel threads to after preallocating memory for hibernation. But while doing that, the hibernation test TEST_FREEZER and the test mode HIBERNATION_TESTPROC were not moved accordingly. As a result, when using these test modes, it only goes upto the freezing of userspace and exits, when in fact it should go till the complete end of task freezing stage, namely the freezing of kernel threads as well. So, move these points of exit to appropriate places so that freezing of kernel threads is also tested while using these test harnesses. Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'kernel/power')
-rw-r--r--kernel/power/hibernate.c23
1 files changed, 17 insertions, 6 deletions
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index b4511b6d3ef9..196c01268ebd 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -55,6 +55,8 @@ enum {
55 55
56static int hibernation_mode = HIBERNATION_SHUTDOWN; 56static int hibernation_mode = HIBERNATION_SHUTDOWN;
57 57
58static bool freezer_test_done;
59
58static const struct platform_hibernation_ops *hibernation_ops; 60static const struct platform_hibernation_ops *hibernation_ops;
59 61
60/** 62/**
@@ -347,6 +349,17 @@ int hibernation_snapshot(int platform_mode)
347 if (error) 349 if (error)
348 goto Close; 350 goto Close;
349 351
352 if (hibernation_test(TEST_FREEZER) ||
353 hibernation_testmode(HIBERNATION_TESTPROC)) {
354
355 /*
356 * Indicate to the caller that we are returning due to a
357 * successful freezer test.
358 */
359 freezer_test_done = true;
360 goto Close;
361 }
362
350 error = dpm_prepare(PMSG_FREEZE); 363 error = dpm_prepare(PMSG_FREEZE);
351 if (error) 364 if (error)
352 goto Complete_devices; 365 goto Complete_devices;
@@ -641,15 +654,13 @@ int hibernate(void)
641 if (error) 654 if (error)
642 goto Finish; 655 goto Finish;
643 656
644 if (hibernation_test(TEST_FREEZER))
645 goto Thaw;
646
647 if (hibernation_testmode(HIBERNATION_TESTPROC))
648 goto Thaw;
649
650 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM); 657 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
651 if (error) 658 if (error)
652 goto Thaw; 659 goto Thaw;
660 if (freezer_test_done) {
661 freezer_test_done = false;
662 goto Thaw;
663 }
653 664
654 if (in_suspend) { 665 if (in_suspend) {
655 unsigned int flags = 0; 666 unsigned int flags = 0;