On 16/09/20 11:06, Daniel P. Berrangé wrote: >> + /* spice must initialize before chardevs (for spicevmc and spiceport) */ >> + qemu_spice_init(); >> + > I don't think we should be putting this before the '-object' processing too. > We really want -object to be the first thing processed in general. >
What about making qemu_spice_init() idempotent (i.e. "static bool false = true; if (!first) return; first = false;") and calling it from the spicevmc and spiceport creation function? Paolo