The patch titled swsusp: quieten Freezer if !CONFIG_PM_DEBUG has been added to the -mm tree. Its filename is quieten-freezer-if-config_pm_debug.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: swsusp: quieten Freezer if !CONFIG_PM_DEBUG From: Nigel Cunningham <ncunningham@xxxxxxxxxxxxx> 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@xxxxxxxxxxxx> Acked-by: Pavel Machek <pavel@xxxxxx> Cc: "Rafael J. Wysocki" <rjw@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/power/process.c | 1 - 1 file changed, 1 deletion(-) diff -puN kernel/power/process.c~quieten-freezer-if-config_pm_debug kernel/power/process.c --- a/kernel/power/process.c~quieten-freezer-if-config_pm_debug +++ a/kernel/power/process.c @@ -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(¤t->sighand->siglock); _ Patches currently in -mm which might be from ncunningham@xxxxxxxxxxxxx are add-include-linux-freezerh-and-move-definitions-from.patch quieten-freezer-if-config_pm_debug.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html