From: Markus Armbruster Date: Wed, 17 Oct 2018 08:26:40 +0000 (+0200) Subject: xen/pt: Fix incomplete conversion to realize() X-Git-Tag: qemu-xen-4.13.0-rc1~609^2~22 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fff4c9c32595e71bca3d1a89beb0781a5be2201b;p=qemu-xen.git xen/pt: Fix incomplete conversion to realize() The conversion of "xen-pci-passthrough" to realize() (commit 5a11d0f7549, v2.6.0) neglected to convert the xen_pt_config_init() error path. If xen_pt_config_init() fails, xen_pt_realize() reports the error, then returns success without completing its job. I don't know the exact impact, but it can't be good. Belatedly convert the error path. Fixes: 5a11d0f7549e24a10e178a9dc8ff5e698031d9a6 Cc: Stefano Stabellini Cc: Anthony Perard Signed-off-by: Markus Armbruster Acked-by: Anthony PERARD Message-Id: <20181017082702.5581-17-armbru@redhat.com> --- diff --git a/hw/xen/xen_pt.c b/hw/xen/xen_pt.c index e5a6eff44f..f1f3a3727c 100644 --- a/hw/xen/xen_pt.c +++ b/hw/xen/xen_pt.c @@ -830,7 +830,7 @@ static void xen_pt_realize(PCIDevice *d, Error **errp) xen_pt_config_init(s, &err); if (err) { error_append_hint(&err, "PCI Config space initialisation failed"); - error_report_err(err); + error_propagate(errp, err); rc = -1; goto err_out; }