mirror of https://github.com/xqemu/xqemu.git
virtio: Notice when the system doesn't support MSIx at all
And do not issue an error_report in that case. Signed-off-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
798595075b
commit
0d583647a7
|
@ -1491,12 +1491,17 @@ static void virtio_pci_device_plugged(DeviceState *d, Error **errp)
|
||||||
pci_set_long(cfg_mask->pci_cfg_data, ~0x0);
|
pci_set_long(cfg_mask->pci_cfg_data, ~0x0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (proxy->nvectors &&
|
if (proxy->nvectors) {
|
||||||
msix_init_exclusive_bar(&proxy->pci_dev, proxy->nvectors,
|
int err = msix_init_exclusive_bar(&proxy->pci_dev, proxy->nvectors,
|
||||||
proxy->msix_bar)) {
|
proxy->msix_bar);
|
||||||
error_report("unable to init msix vectors to %" PRIu32,
|
if (err) {
|
||||||
proxy->nvectors);
|
/* Notice when a system that supports MSIx can't initialize it. */
|
||||||
proxy->nvectors = 0;
|
if (err != -ENOTSUP) {
|
||||||
|
error_report("unable to init msix vectors to %" PRIu32,
|
||||||
|
proxy->nvectors);
|
||||||
|
}
|
||||||
|
proxy->nvectors = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
proxy->pci_dev.config_write = virtio_write_config;
|
proxy->pci_dev.config_write = virtio_write_config;
|
||||||
|
|
Loading…
Reference in New Issue