diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2023-09-08 18:55:36 +0100 |
---|---|---|
committer | Daniel P. Berrangé <berrange@redhat.com> | 2024-02-09 12:48:04 +0000 |
commit | 3b219d99af282b21b3c87ad948dbb21082e8fa1b (patch) | |
tree | 47fa46daa3bc954d2bb9abbdbaf60d36555e12a7 | |
parent | 0e74eb86eaf3ef57e9f9741cb668784c96e654ff (diff) | |
download | qemu-3b219d99af282b21b3c87ad948dbb21082e8fa1b.zip qemu-3b219d99af282b21b3c87ad948dbb21082e8fa1b.tar.gz qemu-3b219d99af282b21b3c87ad948dbb21082e8fa1b.tar.bz2 |
softmmu: remove obsolete comment about libvirt timeouts
For a long time now, libvirt has pre-created the monitor connection
socket and passed the pre-opened FD into QEMU during startup. Thus
libvirt does not have any timeouts waiting for the monitor socket
to appear, it is immediately connected.
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
-rw-r--r-- | system/vl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/system/vl.c b/system/vl.c index 95cd2d9..a82555a 100644 --- a/system/vl.c +++ b/system/vl.c @@ -1914,7 +1914,6 @@ static bool object_create_early(const char *type) * Allocation of large amounts of memory may delay * chardev initialization for too long, and trigger timeouts * on software that waits for a monitor socket to be created - * (e.g. libvirt). */ if (g_str_has_prefix(type, "memory-backend-")) { return false; |