]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] swsusp: quieten Freezer if !CONFIG_PM_DEBUG
authorNigel Cunningham <ncunningham@linuxmail.org>
Thu, 7 Dec 2006 04:34:25 +0000 (20:34 -0800)
committerLinus Torvalds <torvalds@woody.osdl.org>
Thu, 7 Dec 2006 16:39:27 +0000 (08:39 -0800)
The freezer currently prints an '=' for every process that is frozen.  This
is pretty pointless, as the equals sign says nothing about which process is
frozen, and makes logs look messier (especially if there were a large
number of processes running).  All we really need to know is that we
started trying to freeze processes and what processes (if any) failed to
freeze, or that we succeeded.

Signed-off-by: Nigel Cunningham <nigel@suspend2.net>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
kernel/power/process.c

index 29be608e8349d54e4cf9bdc2ff8fff17ee96e935..b0edfc6f2798715a871965eb8c29aaf160a5a62f 100644 (file)
@@ -40,7 +40,6 @@ void refrigerator(void)
        long save;
        save = current->state;
        pr_debug("%s entered refrigerator\n", current->comm);
-       printk("=");
 
        frozen_process(current);
        spin_lock_irq(&current->sighand->siglock);