Created attachment 121809 [details] Script used to run QEMU When running qemu with upstream spice server, and without qxl enabled, qemu crashes. The crash was introduced with commit 1f210080609f2c00b4d1859eb0b363a38 "Remove use of global 'reds' from AgentMsgFilter" in spice server, specifically this part: reds->agent_state.write_filter.use_client_monitors_config= reds_use_client_monitors_config(reds); reds->agent_state.read_filter.use_client_monitors_config = reds_use_client_monitors_config(reds); The crash happens in function dpy_ui_info_supported() from qemu ui/console.c, because QemuConsole *con == NULL. The issue might be connected to commit aadb94557011af2466dd7e678a1de45415ce424a "Remove global 'dispatchers', 'num_active_workers' variables" Callstack: dpy_ui_info_supported(), qemu ui/console.c interface_client_monitors_config(), qemu ui/spice-display.c red_dispatcher_use_client_monitors_config(), spice server/red-dispatcher.c reds_use_client_monitors_config(), spice server/reds.c Script for runnign QEMU attached
Even this causes the crash: export LD_PRELOAD="/home/lvenhoda/jhbuild/src/spice/server/.libs/libspice-server.so" qemu-system-x86_64 -spice disable-ticketing,port=5900 While this doesn't: export LD_PRELOAD="/home/lvenhoda/jhbuild/src/spice/server/.libs/libspice-server.so" qemu-system-x86_64 -spice disable-ticketing,port=5900 -vga qxl
Fixed in last master version. Thanks for prompt report.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.