qom: Register QOM infrastructure early

The constructors for QOM TYPE_INTERFACE were executed rather late in
vl.c's main(). Call them very early so that QOM can safely be used for
machines and CPUs.

Signed-off-by: Andreas Färber <afaerber@suse.de>
Cc: Anthony Liguori <anthony@codemonkey.ws>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Andreas Färber 2012-03-04 21:32:35 +01:00 committed by Anthony Liguori
parent 03f48b0797
commit 1b71f7c14f

4
vl.c
View file

@ -2299,6 +2299,8 @@ int main(int argc, char **argv, char **envp)
#endif
}
module_call_init(MODULE_INIT_QOM);
runstate_init();
init_clocks();
@ -3466,8 +3468,6 @@ int main(int argc, char **argv, char **envp)
if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
exit(1);
module_call_init(MODULE_INIT_QOM);
/* must be after qdev registration but before machine init */
if (vga_model) {
select_vgahw(vga_model);