Skip to content

Commit

Permalink
PM / Hibernate: Refactor and simplify freezer_test_done
Browse files Browse the repository at this point in the history
The code related to 'freezer_test_done' is needlessly convoluted.
Refactor the code and simplify the implementation.

Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
  • Loading branch information
Srivatsa S. Bhat authored and Rafael J. Wysocki committed Feb 9, 2012
1 parent 51d6ff7 commit a556d5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
10 changes: 5 additions & 5 deletions kernel/power/hibernate.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,12 +629,8 @@ int hibernate(void)
goto Finish;

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

if (in_suspend) {
unsigned int flags = 0;
Expand All @@ -659,6 +655,10 @@ int hibernate(void)

Thaw:
thaw_processes();

/* Don't bother checking whether freezer_test_done is true */
freezer_test_done = false;

Finish:
free_basic_memory_bitmaps();
usermodehelper_enable();
Expand Down
6 changes: 2 additions & 4 deletions kernel/power/user.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,8 @@ static long snapshot_ioctl(struct file *filp, unsigned int cmd,
error = hibernation_snapshot(data->platform_support);
if (!error) {
error = put_user(in_suspend, (int __user *)arg);
if (!error && !freezer_test_done)
data->ready = 1;
if (freezer_test_done)
freezer_test_done = false;
data->ready = !freezer_test_done && !error;
freezer_test_done = false;
}
break;

Expand Down

0 comments on commit a556d5b

Please sign in to comment.