mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
char: emit the OPENED event only when a new char connection is opened
The OPENED event gets sent also when qemu resets its state initially. The consumers of the event aren't interested in receiving this event on reset. Patchworks-ID: 35288 Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
committed by
Anthony Liguori
parent
b6b8df560c
commit
6cfa64de90
@@ -119,7 +119,12 @@ static void qemu_chr_event(CharDriverState *s, int event)
|
||||
static void qemu_chr_reset_bh(void *opaque)
|
||||
{
|
||||
CharDriverState *s = opaque;
|
||||
qemu_chr_event(s, CHR_EVENT_OPENED);
|
||||
|
||||
if (s->initial_reset_issued) {
|
||||
qemu_chr_event(s, CHR_EVENT_OPENED);
|
||||
} else {
|
||||
s->initial_reset_issued = true;
|
||||
}
|
||||
qemu_bh_delete(s->bh);
|
||||
s->bh = NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user