mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
chardev: Use timer instead of bottom-half to postpone open event
As the block layer may decide to flush bottom-halfs while the machine is still initializing (e.g. to read geometry data from the disk), our postponed open event may be processed before the last frontend registered with a muxed chardev. Until the semantics of BHs have been clarified, use an expired timer to achieve the same effect (suggested by Paolo Bonzini). This requires to perform the alarm timer initialization earlier as otherwise timer subsystem can be used before being ready. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
parent
40e3acc18f
commit
ac4119c023
3 changed files with 13 additions and 12 deletions
13
qemu-char.c
13
qemu-char.c
|
@ -123,19 +123,20 @@ void qemu_chr_be_event(CharDriverState *s, int event)
|
|||
s->chr_event(s->handler_opaque, event);
|
||||
}
|
||||
|
||||
static void qemu_chr_generic_open_bh(void *opaque)
|
||||
static void qemu_chr_fire_open_event(void *opaque)
|
||||
{
|
||||
CharDriverState *s = opaque;
|
||||
qemu_chr_be_event(s, CHR_EVENT_OPENED);
|
||||
qemu_bh_delete(s->bh);
|
||||
s->bh = NULL;
|
||||
qemu_free_timer(s->open_timer);
|
||||
s->open_timer = NULL;
|
||||
}
|
||||
|
||||
void qemu_chr_generic_open(CharDriverState *s)
|
||||
{
|
||||
if (s->bh == NULL) {
|
||||
s->bh = qemu_bh_new(qemu_chr_generic_open_bh, s);
|
||||
qemu_bh_schedule(s->bh);
|
||||
if (s->open_timer == NULL) {
|
||||
s->open_timer = qemu_new_timer_ms(vm_clock,
|
||||
qemu_chr_fire_open_event, s);
|
||||
qemu_mod_timer(s->open_timer, qemu_get_clock_ms(vm_clock) - 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue