* [patch] swsusp: remove unused variable
@ 2005-11-01 9:36 Pavel Machek
0 siblings, 0 replies; only message in thread
From: Pavel Machek @ 2005-11-01 9:36 UTC (permalink / raw)
To: Andrew Morton, kernel list
Remove unused variable, and make code less evil that way. Fix
whitespace around for-loop-like macro.
Signed-off-by: Pavel Machek <pavel@suse.cz>
diff --git a/kernel/power/swsusp.c b/kernel/power/swsusp.c
--- a/kernel/power/swsusp.c
+++ b/kernel/power/swsusp.c
@@ -85,18 +85,11 @@ unsigned int nr_copy_pages __nosavedata
/* Suspend pagedir is allocated before final copy, therefore it
must be freed after resume
- Warning: this is evil. There are actually two pagedirs at time of
- resume. One is "pagedir_save", which is empty frame allocated at
- time of suspend, that must be freed. Second is "pagedir_nosave",
- allocated at time of resume, that travels through memory not to
- collide with anything.
-
Warning: this is even more evil than it seems. Pagedirs this file
talks about are completely different from page directories used by
MMU hardware.
*/
suspend_pagedir_t *pagedir_nosave __nosavedata = NULL;
-suspend_pagedir_t *pagedir_save;
#define SWSUSP_SIG "S1SUSPEND"
@@ -385,7 +378,7 @@ static void data_free(void)
swp_entry_t entry;
struct pbe *p;
- for_each_pbe(p, pagedir_nosave) {
+ for_each_pbe (p, pagedir_nosave) {
entry = p->swap_address;
if (entry.val)
swap_free(entry);
--
Thanks, Sharp!
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-01 9:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-01 9:36 [patch] swsusp: remove unused variable Pavel Machek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome