[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <201202110035.32993.rjw@sisk.pl>
Date: Sat, 11 Feb 2012 00:35:32 +0100
From: "Rafael J. Wysocki" <rjw@...k.pl>
To: Linux PM list <linux-pm@...r.kernel.org>
Cc: LKML <linux-kernel@...r.kernel.org>,
"Srivatsa S. Bhat" <srivatsa.bhat@...ux.vnet.ibm.com>
Subject: [PATCH] PM / Sleep: Remove unnecessary label from suspend_freeze_processes()
From: Rafael J. Wysocki <rjw@...k.pl>
The Finish label in suspend_freeze_processes() is in fact necessary
and makes the function look more complicated that it really is, so
remove it (along with a few empty lines).
Signed-off-by: Rafael J. Wysocki <rjw@...k.pl>
---
The patch is on top of linux-pm/pm-sleep.
Thanks,
Rafael
---
kernel/power/power.h | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
Index: linux/kernel/power/power.h
===================================================================
--- linux.orig/kernel/power/power.h
+++ linux/kernel/power/power.h
@@ -234,16 +234,14 @@ static inline int suspend_freeze_process
int error;
error = freeze_processes();
-
/*
* freeze_processes() automatically thaws every task if freezing
* fails. So we need not do anything extra upon error.
*/
if (error)
- goto Finish;
+ return error;
error = freeze_kernel_threads();
-
/*
* freeze_kernel_threads() thaws only kernel threads upon freezing
* failure. So we have to thaw the userspace tasks ourselves.
@@ -251,7 +249,6 @@ static inline int suspend_freeze_process
if (error)
thaw_processes();
- Finish:
return error;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists