]> Git Repo - qemu.git/commitdiff
vfio: warn if host device rom can't be read
authorBandan Das <[email protected]>
Wed, 15 Jan 2014 17:11:06 +0000 (10:11 -0700)
committerAlex Williamson <[email protected]>
Wed, 15 Jan 2014 17:11:06 +0000 (10:11 -0700)
If the device rom can't be read, report an error to the
user. This alerts the user that the device has a bad
state that is causing rom read failure or option rom
loading has been disabled from the device boot menu
(among other reasons).

Signed-off-by: Bandan Das <[email protected]>
Signed-off-by: Alex Williamson <[email protected]>
hw/misc/vfio.c

index ec9f41b98dcded7cbec57d0b6ab68a1cba11bc76..ef615fc28f9a02045c52894f9ffbf0a2edef1608 100644 (file)
@@ -1125,6 +1125,13 @@ static void vfio_pci_load_rom(VFIODevice *vdev)
     vdev->rom_offset = reg_info.offset;
 
     if (!vdev->rom_size) {
+        error_report("vfio-pci: Cannot read device rom at "
+                    "%04x:%02x:%02x.%x\n",
+                    vdev->host.domain, vdev->host.bus, vdev->host.slot,
+                    vdev->host.function);
+        error_printf("Device option ROM contents are probably invalid "
+                    "(check dmesg).\nSkip option ROM probe with rombar=0, "
+                    "or load from file with romfile=\n");
         return;
     }
 
This page took 0.032805 seconds and 4 git commands to generate.