]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw/xen: Downgrade a xen_bus_realize() non-error to warning
authorMarkus Armbruster <armbru@redhat.com>
Fri, 14 Mar 2025 14:35:00 +0000 (15:35 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Wed, 19 Mar 2025 08:36:29 +0000 (09:36 +0100)
xen_bus_realize() reports a failure to set up a watch as error, but it
doesn't treat it as one: it simply continues.  Report a warning
instead.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20250314143500.2449658-3-armbru@redhat.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
hw/xen/xen-bus.c

index 2aacc1436fec1fc304cc6093e52ae566bffb59ad..f808a01813ab41f08a3a025ac6a3c103bd025aca 100644 (file)
@@ -353,10 +353,9 @@ static void xen_bus_realize(BusState *bus, Error **errp)
             xs_node_watch(xenbus->xsh, node, key, xen_bus_backend_changed,
                           xenbus, &local_err);
         if (local_err) {
-            /* This need not be treated as a hard error so don't propagate */
-            error_reportf_err(local_err,
-                              "failed to set up '%s' enumeration watch: ",
-                              type[i]);
+            warn_reportf_err(local_err,
+                             "failed to set up '%s' enumeration watch: ",
+                             type[i]);
             local_err = NULL;
         }