diff options
author | Peter Maydell | 2022-07-19 18:40:36 +0200 |
---|---|---|
committer | Peter Maydell | 2022-07-19 18:40:36 +0200 |
commit | d48125de38f48a61d6423ef6a01156d6dff9ee2c (patch) | |
tree | f1555f3565dcb7f00a4ba7a6b581700516b720a6 /ui/dbus.c | |
parent | Merge tag 'pull-request-2022-07-19' of https://gitlab.com/thuth/qemu into sta... (diff) | |
parent | gtk: Add show_tabs=on|off command line option. (diff) | |
download | qemu-d48125de38f48a61d6423ef6a01156d6dff9ee2c.tar.gz qemu-d48125de38f48a61d6423ef6a01156d6dff9ee2c.tar.xz qemu-d48125de38f48a61d6423ef6a01156d6dff9ee2c.zip |
Merge tag 'kraxel-20220719-pull-request' of https://gitlab.com/kraxel/qemu into staging
ui: dbus-display fix, new gtk config options.
usb: xhci fix, doc updates.
microvm: no pcie io reservations.
# gpg: Signature made Tue 19 Jul 2022 16:21:06 BST
# gpg: using RSA key A0328CFFB93A17A79901FE7D4CB6D8EED3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" [full]
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>" [full]
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>" [full]
# Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138
* tag 'kraxel-20220719-pull-request' of https://gitlab.com/kraxel/qemu:
gtk: Add show_tabs=on|off command line option.
usb: document pcap (aka usb traffic capture)
usb: document guest-reset and guest-reset-all
usb/hcd-xhci: check slotid in xhci_wakeup_endpoint()
microvm: turn off io reservations for pcie root ports
dbus-display: fix test race when initializing p2p connection
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'ui/dbus.c')
-rw-r--r-- | ui/dbus.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -268,6 +268,7 @@ dbus_display_add_client_ready(GObject *source_object, } g_dbus_object_manager_server_set_connection(dbus_display->server, conn); + g_dbus_connection_start_message_processing(conn); } @@ -300,7 +301,8 @@ dbus_display_add_client(int csock, Error **errp) g_dbus_connection_new(G_IO_STREAM(conn), guid, - G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER, + G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER | + G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING, NULL, dbus_display->add_client_cancellable, dbus_display_add_client_ready, |