Revert "char: emit the OPENED event only when a new char connection is opened"
authorAnthony Liguori <aliguori@us.ibm.com>
Tue, 27 Oct 2009 15:14:50 +0000 (10:14 -0500)
committerAnthony Liguori <aliguori@us.ibm.com>
Tue, 27 Oct 2009 17:29:06 +0000 (12:29 -0500)
This reverts commit 6cfa64de908d67fb6f6b6e3ae4888dd863f69e44.

This breaks the monitor prompt.  Proper fix will come from Amit.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
qemu-char.c
qemu-char.h

index 6f05f8a747ce85f242f21d0aec733e9a7c4a9cbd..25abdc8d345f0845661cdf875b3c957689c885ca 100644 (file)
@@ -113,12 +113,7 @@ static void qemu_chr_event(CharDriverState *s, int event)
 static void qemu_chr_reset_bh(void *opaque)
 {
     CharDriverState *s = opaque;
-
-    if (s->initial_reset_issued) {
-        qemu_chr_event(s, CHR_EVENT_OPENED);
-    } else {
-        s->initial_reset_issued = true;
-    }
+    qemu_chr_event(s, CHR_EVENT_OPENED);
     qemu_bh_delete(s->bh);
     s->bh = NULL;
 }
index 409961d20549822e62cedec61bc4761062c8e07c..05fe15d8cd8a0a98decddb1ea0bbdd3bf039b6ae 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef QEMU_CHAR_H
 #define QEMU_CHAR_H
 
-#include <stdbool.h>
 #include "qemu-common.h"
 #include "qemu-queue.h"
 #include "qemu-option.h"
@@ -67,7 +66,6 @@ struct CharDriverState {
     QEMUBH *bh;
     char *label;
     char *filename;
-    bool initial_reset_issued;
     QTAILQ_ENTRY(CharDriverState) next;
 };