Revert "char: emit the OPENED event only when a new char connection is opened"

This reverts commit 6cfa64de90.

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

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2009-10-27 10:14:50 -05:00
parent 9f09204064
commit f7cbc08ff0
2 changed files with 1 additions and 8 deletions

View 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;
}