diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 10:14:50 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:29:06 -0500 |
commit | f7cbc08ff0d712b0febcf84ce8458c3ae30db4fa (patch) | |
tree | ec7d9b6de929b2daffa724a5de5d858a414cb0a0 /qemu-char.c | |
parent | 9f09204064f7df627361e0dfc1f0e86f106de8e9 (diff) |
Revert "char: emit the OPENED event only when a new char connection is opened"
This reverts commit 6cfa64de908d67fb6f6b6e3ae4888dd863f69e44.
This breaks the monitor prompt. Proper fix will come from Amit.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r-- | qemu-char.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/qemu-char.c b/qemu-char.c index 6f05f8a747..25abdc8d34 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -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; } |