[patch] suspend: make progress printing prettier

From: Pavel Machek
Date: Sun Feb 05 2006 - 06:43:44 EST


Combination of printk/pr_debug led to <7> in the middle of the line,
and we printed way too many dots.

Signed-off-by: Pavel Machek <pavel@xxxxxxx>

diff --git a/kernel/power/snapshot.c b/kernel/power/snapshot.c
index 41f6636..c9c293f 100644
--- a/kernel/power/snapshot.c
+++ b/kernel/power/snapshot.c
@@ -80,7 +80,7 @@ static int save_highmem_zone(struct zone
void *kaddr;
unsigned long pfn = zone_pfn + zone->zone_start_pfn;

- if (!(pfn%1000))
+ if (!(pfn%10000))
printk(".");
if (!pfn_valid(pfn))
continue;
@@ -121,13 +121,14 @@ int save_highmem(void)
struct zone *zone;
int res = 0;

- pr_debug("swsusp: Saving Highmem\n");
+ pr_debug("swsusp: Saving Highmem");
for_each_zone (zone) {
if (is_highmem(zone))
res = save_highmem_zone(zone);
if (res)
return res;
}
+ printk("\n");
return 0;
}


--
Thanks, Sharp!
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/