qga:/qga-win: skip getting pci info for USB disks
Skip getting PCI info from disks type USB and give them an empty PCI address instead. Signed-off-by: Kfir Manor <kfir@daynix.com> Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
This commit is contained in:
parent
8e12ec8ee3
commit
cce910f219
@ -874,10 +874,14 @@ static void get_single_disk_info(int disk_number,
|
|||||||
* if that doesn't hold since that suggests some other unexpected
|
* if that doesn't hold since that suggests some other unexpected
|
||||||
* breakage
|
* breakage
|
||||||
*/
|
*/
|
||||||
disk->pci_controller = get_pci_info(disk_number, &local_err);
|
if (disk->bus_type == GUEST_DISK_BUS_TYPE_USB) {
|
||||||
if (local_err) {
|
disk->pci_controller = get_empty_pci_address();
|
||||||
error_propagate(errp, local_err);
|
} else {
|
||||||
goto err_close;
|
disk->pci_controller = get_pci_info(disk_number, &local_err);
|
||||||
|
if (local_err) {
|
||||||
|
error_propagate(errp, local_err);
|
||||||
|
goto err_close;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (disk->bus_type == GUEST_DISK_BUS_TYPE_SCSI
|
if (disk->bus_type == GUEST_DISK_BUS_TYPE_SCSI
|
||||||
|| disk->bus_type == GUEST_DISK_BUS_TYPE_IDE
|
|| disk->bus_type == GUEST_DISK_BUS_TYPE_IDE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user