From: Daniel Drake <dsd@gentoo.org>
To: Andrew Johnson <ajohnson@intrinsyc.com>
Cc: pavel@suse.cz, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Software Suspend: Fix suspend when console is in VT_AUTO/KD_GRAPHICS mode
Date: Thu, 08 Mar 2007 18:37:18 -0500 [thread overview]
Message-ID: <45F09E2E.4050309@gentoo.org> (raw)
In-Reply-To: <1173394485.28589.17.camel@localhost.localdomain>
Andrew Johnson wrote:
> When the console is in VT_AUTO/KD_GRAPHICS mode, switching to the
> SUSPEND_CONSOLE fails, resulting in vt_waitactive() waiting indefinately
> or until the task is interrupted. The following patch tests if a
> console switch can occur in set_console() and returns early if a console
> switch is not possible.
>
> Signed-off-by: Andrew Johnson <ajohnson@intrinsyc.com>
>
> diff -rup linux-2.6.20.1/drivers/char/vt.c linux/drivers/char/vt.c
> --- linux-2.6.20.1/drivers/char/vt.c 2007-02-19 22:34:32.000000000 -0800
> +++ linux/drivers/char/vt.c 2007-03-08 14:15:41.000000000 -0800
> @@ -2188,10 +2188,20 @@ static void console_callback(struct work
> release_console_sem();
> }
>
> -void set_console(int nr)
> +extern char vt_dont_switch;
> +
> +int set_console(int nr)
> {
> + struct vc_data *vc = vc_cons[fg_console].d;
> +
> + if(!vc_cons_allocated(nr) || vt_dont_switch || vc->vc_mode ==
> KD_GRAPHICS) {
> + return -EINVAL;
> + }
> +
> want_console = nr;
> schedule_console_callback();
> +
> + return 0;
> }
I haven't tested, but I think the above -EINVAL return will break chvt.
chvt uses the VT_ACTIVATE ioctl which calls set_console(), and it is
valid for chvt to be used to change away from a graphics-mode console --
that shouldn't be an error condition.
Daniel
next prev parent reply other threads:[~2007-03-08 23:36 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-08 22:54 [PATCH] Software Suspend: Fix suspend when console is in VT_AUTO/KD_GRAPHICS mode Andrew Johnson
2007-03-08 23:37 ` Daniel Drake [this message]
2007-03-09 5:01 ` Andrew Johnson
2007-03-09 9:08 ` Pavel Machek
2007-03-09 15:34 ` Matthew Garrett
2007-03-09 16:10 ` Andrew Johnson
2007-03-09 21:13 ` Pavel Machek
2007-03-09 21:58 ` Andrew Johnson
2007-03-10 22:26 ` Pavel Machek
2007-03-09 19:02 ` Andrew Johnson
2007-03-09 21:19 ` Pavel Machek
2007-03-10 0:05 ` Andrew Johnson
2007-03-10 22:28 ` Pavel Machek
2007-03-09 21:11 ` Pavel Machek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=45F09E2E.4050309@gentoo.org \
--to=dsd@gentoo.org \
--cc=ajohnson@intrinsyc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pavel@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox