diff mbox

console: call qemu_chr_reset() in text_console_init

Message ID 1255506947-22235-1-git-send-email-amit.shah@redhat.com
State New
Headers show

Commit Message

Amit Shah Oct. 14, 2009, 7:55 a.m. UTC
text_console_init is called as the initialiser function for the 'vc'
char backend. This function doesn't call qemu_chr_reset(), that emits
the OPENED event.

This fixes the help text and initial prompt display when the monitor
is started in its default options -- as a vc backend to sdl or vnc.

Signed-off-by: Amit Shah <amit.shah@redhat.com>
---

This patch fixes the bug that gets exposed when my other char patches
are applied (which are presently in Anthony's queue).

 console.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/console.c b/console.c
index 9bbef59..a4e0d64 100644
--- a/console.c
+++ b/console.c
@@ -1403,6 +1403,7 @@  CharDriverState *text_console_init(QemuOpts *opts)
     text_console_opts[n_text_consoles] = opts;
     n_text_consoles++;
 
+    qemu_chr_reset(chr);
     return chr;
 }