Skip to content

Commit

Permalink
PM / Hibernate: Fix the early termination of test modes
Browse files Browse the repository at this point in the history
Commit 2aede85
(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 <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
  • Loading branch information
Srivatsa S. Bhat authored and rjwysocki committed Nov 18, 2011
1 parent 88995e8 commit aa9a7b1
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions kernel/power/hibernate.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ enum {

static int hibernation_mode = HIBERNATION_SHUTDOWN;

static bool freezer_test_done;

static const struct platform_hibernation_ops *hibernation_ops;

/**
Expand Down Expand Up @@ -347,6 +349,17 @@ int hibernation_snapshot(int platform_mode)
if (error)
goto Close;

if (hibernation_test(TEST_FREEZER) ||
hibernation_testmode(HIBERNATION_TESTPROC)) {

/*
* Indicate to the caller that we are returning due to a
* successful freezer test.
*/
freezer_test_done = true;
goto Close;
}

error = dpm_prepare(PMSG_FREEZE);
if (error)
goto Complete_devices;
Expand Down Expand Up @@ -641,15 +654,13 @@ int hibernate(void)
if (error)
goto Finish;

if (hibernation_test(TEST_FREEZER))
goto Thaw;

if (hibernation_testmode(HIBERNATION_TESTPROC))
goto Thaw;

error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
if (error)
goto Thaw;
if (freezer_test_done) {
freezer_test_done = false;
goto Thaw;
}

if (in_suspend) {
unsigned int flags = 0;
Expand Down

0 comments on commit aa9a7b1

Please sign in to comment.