Skip to content

Commit

Permalink
[PATCH] swsusp: fix suspend when console is in VT_AUTO+KD_GRAPHICS mode
Browse files Browse the repository at this point in the history
When the console is in VT_AUTO+KD_GRAPHICS mode, switching to the
SUSPEND_CONSOLE fails, resulting in vt_waitactive() waiting indefinitely or
until the task is interrupted.  This patch tests if a console switch can
occur in set_console() and returns early if a console switch is not
possible.

[akpm@linux-foundation.org: cleanup]
Signed-off-by: Andrew Johnson <ajohnson@intrinsyc.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Andrew Johnson authored and Linus Torvalds committed Mar 17, 2007
1 parent 1174cf7 commit b257bc0
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
20 changes: 19 additions & 1 deletion drivers/char/vt.c
Original file line number Diff line number Diff line change
Expand Up @@ -2185,10 +2185,28 @@ static void console_callback(struct work_struct *ignored)
release_console_sem();
}

void set_console(int nr)
int set_console(int nr)
{
struct vc_data *vc = vc_cons[fg_console].d;

if (!vc_cons_allocated(nr) || vt_dont_switch ||
(vc->vt_mode.mode == VT_AUTO && vc->vc_mode == KD_GRAPHICS)) {

/*
* Console switch will fail in console_callback() or
* change_console() so there is no point scheduling
* the callback
*
* Existing set_console() users don't check the return
* value so this shouldn't break anything
*/
return -EINVAL;
}

want_console = nr;
schedule_console_callback();

return 0;
}

struct tty_driver *console_driver;
Expand Down
2 changes: 1 addition & 1 deletion drivers/char/vt_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <linux/kbd_diacr.h>
#include <linux/selection.h>

static char vt_dont_switch;
char vt_dont_switch;
extern struct tty_driver *console_driver;

#define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
Expand Down
2 changes: 1 addition & 1 deletion include/linux/kbd_kern.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ extern int do_poke_blanked_console;

extern void (*kbd_ledfunc)(unsigned int led);

extern void set_console(int nr);
extern int set_console(int nr);
extern void schedule_console_callback(void);

static inline void set_leds(void)
Expand Down
1 change: 1 addition & 0 deletions include/linux/vt_kern.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ void reset_vc(struct vc_data *vc);
#define CON_BUF_SIZE (CONFIG_BASE_SMALL ? 256 : PAGE_SIZE)
extern char con_buf[CON_BUF_SIZE];
extern struct semaphore con_buf_sem;
extern char vt_dont_switch;

struct vt_spawn_console {
spinlock_t lock;
Expand Down
10 changes: 9 additions & 1 deletion kernel/power/console.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@ int pm_prepare_console(void)
return 1;
}

set_console(SUSPEND_CONSOLE);
if (set_console(SUSPEND_CONSOLE)) {
/*
* We're unable to switch to the SUSPEND_CONSOLE.
* Let the calling function know so it can decide
* what to do.
*/
release_console_sem();
return 1;
}
release_console_sem();

if (vt_waitactive(SUSPEND_CONSOLE)) {
Expand Down

0 comments on commit b257bc0

Please sign in to comment.