All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: Jan Kiszka <jan.kiszka@web.de>
Cc: qemu-devel <qemu-devel@nongnu.org>, Andriy Gapon <avg@FreeBSD.org>
Subject: Re: [Qemu-devel] [PATCH] console: Properly switch consoles for screen dumps
Date: Fri, 23 Sep 2011 09:44:03 -0500	[thread overview]
Message-ID: <4E7C9B33.3080002@us.ibm.com> (raw)
In-Reply-To: <4E7280A7.5080809@web.de>

On 09/15/2011 05:48 PM, Jan Kiszka wrote:
> From: Jan Kiszka<jan.kiszka@siemens.com>
>
> Do not mess with active_console, use console_select instead. This fixes
> corrupt virtual monitor consoles after issuing the screendump command.
>
> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>

Applied.  Thanks.

Regards,

Anthony Liguori

> ---
>
> Looks still weird - we should enable dumping to an invisible display
> buffer - but it cures this symptom without rewriting the whole console
> code.
>
>   console.c |   13 ++++++++++---
>   1 files changed, 10 insertions(+), 3 deletions(-)
>
> diff --git a/console.c b/console.c
> index 5c7a93b..6dfcc47 100644
> --- a/console.c
> +++ b/console.c
> @@ -115,6 +115,7 @@ typedef enum {
>   /* ??? This is mis-named.
>      It is used for both text and graphical consoles.  */
>   struct TextConsole {
> +    int index;
>       console_type_t console_type;
>       DisplayState *ds;
>       /* Graphic console state.  */
> @@ -177,12 +178,15 @@ void vga_hw_screen_dump(const char *filename)
>       TextConsole *previous_active_console;
>
>       previous_active_console = active_console;
> -    active_console = consoles[0];
> +
>       /* There is currently no way of specifying which screen we want to dump,
>          so always dump the first one.  */
> -    if (consoles[0]&&  consoles[0]->hw_screen_dump)
> +    console_select(0);
> +    if (consoles[0]&&  consoles[0]->hw_screen_dump) {
>           consoles[0]->hw_screen_dump(consoles[0]->hw, filename);
> -    active_console = previous_active_console;
> +    }
> +
> +    console_select(previous_active_console->index);
>   }
>
>   void vga_hw_text_update(console_ch_t *chardata)
> @@ -1247,6 +1251,7 @@ static TextConsole *new_console(DisplayState *ds, console_type_t console_type)
>       s->ds = ds;
>       s->console_type = console_type;
>       if (console_type != GRAPHIC_CONSOLE) {
> +        s->index = nb_consoles;
>           consoles[nb_consoles++] = s;
>       } else {
>           /* HACK: Put graphical consoles before text consoles.  */
> @@ -1254,7 +1259,9 @@ static TextConsole *new_console(DisplayState *ds, console_type_t console_type)
>               if (consoles[i - 1]->console_type == GRAPHIC_CONSOLE)
>                   break;
>               consoles[i] = consoles[i - 1];
> +            consoles[i]->index = i;
>           }
> +        s->index = i;
>           consoles[i] = s;
>           nb_consoles++;
>       }
>
>

      parent reply	other threads:[~2011-09-23 14:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-15 22:48 [Qemu-devel] [PATCH] console: Properly switch consoles for screen dumps Jan Kiszka
2011-09-16 15:13 ` Andriy Gapon
2011-09-23 14:44 ` Anthony Liguori [this message]

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=4E7C9B33.3080002@us.ibm.com \
    --to=aliguori@us.ibm.com \
    --cc=avg@FreeBSD.org \
    --cc=jan.kiszka@web.de \
    --cc=qemu-devel@nongnu.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.