]> git.proxmox.com Git - mirror_qemu.git/commit - chardev/char-mux.c
chardev: introduce chr_machine_done hook
authorPeter Xu <peterx@redhat.com>
Tue, 6 Mar 2018 05:33:16 +0000 (13:33 +0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 12 Mar 2018 15:12:46 +0000 (16:12 +0100)
commitc7278b43550f501a6d62388eb7a7e68a5b43c044
treebbc85a032edad84d9a8d5a698a1398523b514a0f
parentce1230c054e97932660aecd9ba61ee31d461e339
chardev: introduce chr_machine_done hook

Introduce ChardevClass.chr_machine_done() hook so that chardevs can run
customized procedures after machine init.

There was an existing mux user already that did similar thing but used a
raw machine done notifier.  Generalize it into a framework, and let the
mux chardevs provide such a class-specific hook to achieve the same
thing.  Then we can move the mux related code to the char-mux.c file.

Since at it, replace the mux_realized variable with the global
machine_init_done varible.

This notifier framework will be further leverged by other type of
chardevs soon.

Signed-off-by: Peter Xu <peterx@redhat.com>
Message-Id: <20180306053320.15401-6-peterx@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
chardev/char-mux.c
chardev/char.c
include/chardev/char-mux.h
include/chardev/char.h
tests/test-char.c