From: "Rafael J. Wysocki" Remove ssleep() from suspend_console(). Stefan thinks it is unnecessary and will slow down the suspend too much. Signed-off-by: Rafael J. Wysocki Cc: Pavel Machek Cc: Stefan Seyfried Signed-off-by: Andrew Morton --- kernel/printk.c | 5 ----- 1 files changed, 5 deletions(-) diff -puN kernel/printk.c~pm-make-it-possible-to-disable-console-suspending-fix-2 kernel/printk.c --- a/kernel/printk.c~pm-make-it-possible-to-disable-console-suspending-fix-2 +++ a/kernel/printk.c @@ -732,11 +732,6 @@ void suspend_console(void) printk("Suspending console(s)\n"); acquire_console_sem(); console_suspended = 1; - /* This is needed so that all of the messages that have already been - * written to all consoles can be actually transmitted (eg. over a - * network) before we try to suspend the consoles' devices. - */ - ssleep(2); } void resume_console(void) _