PM: Fix suspend_console and resume_console to use only one semaphore

This fixes a race where a thread acquires the console while the
console is suspended, and the console is resumed before this
thread releases it. In this case, the secondary console
semaphore would be left locked, and the primary semaphore would
be released twice. This in turn would cause the console switch
on suspend or resume to hang forever.

Note that suspend_console does not actually lock the console
for clients that use acquire_console_sem, it only locks it for
clients that use try_acquire_console_sem. If we change
suspend_console to fully lock the console, then the kernel
may deadlock on suspend. One client of try_acquire_console_sem
is acquire_console_semaphore_for_printk, which uses it to
prevent printk from using the console while it is suspended.

Signed-off-by: Arve Hjønnevåg <arve@android.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Len Brown <lenb@kernel.org>
Cc: Greg KH <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Arve Hjønnevåg and committed by
Linus Torvalds
403f3075 b090f9fa

+9 -6
+9 -6
kernel/printk.c
··· 73 73 * driver system. 74 74 */ 75 75 static DECLARE_MUTEX(console_sem); 76 - static DECLARE_MUTEX(secondary_console_sem); 77 76 struct console *console_drivers; 78 77 EXPORT_SYMBOL_GPL(console_drivers); 79 78 ··· 890 891 printk("Suspending console(s) (use no_console_suspend to debug)\n"); 891 892 acquire_console_sem(); 892 893 console_suspended = 1; 894 + up(&console_sem); 893 895 } 894 896 895 897 void resume_console(void) 896 898 { 897 899 if (!console_suspend_enabled) 898 900 return; 901 + down(&console_sem); 899 902 console_suspended = 0; 900 903 release_console_sem(); 901 904 } ··· 913 912 void acquire_console_sem(void) 914 913 { 915 914 BUG_ON(in_interrupt()); 916 - if (console_suspended) { 917 - down(&secondary_console_sem); 918 - return; 919 - } 920 915 down(&console_sem); 916 + if (console_suspended) 917 + return; 921 918 console_locked = 1; 922 919 console_may_schedule = 1; 923 920 } ··· 925 926 { 926 927 if (down_trylock(&console_sem)) 927 928 return -1; 929 + if (console_suspended) { 930 + up(&console_sem); 931 + return -1; 932 + } 928 933 console_locked = 1; 929 934 console_may_schedule = 0; 930 935 return 0; ··· 982 979 unsigned wake_klogd = 0; 983 980 984 981 if (console_suspended) { 985 - up(&secondary_console_sem); 982 + up(&console_sem); 986 983 return; 987 984 } 988 985