]> rtime.felk.cvut.cz Git - jailhouse.git/commitdiff
core: pci: Adjust error report wording in pci_msix_access_handler
authorJan Kiszka <jan.kiszka@siemens.com>
Mon, 18 May 2015 07:32:15 +0000 (09:32 +0200)
committerJan Kiszka <jan.kiszka@siemens.com>
Mon, 18 May 2015 08:44:33 +0000 (10:44 +0200)
The error scope is broader, also includes (unaligned) reads. Moreover,
the access is not on the BAR but the MSI-X table or PBA.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
hypervisor/pci.c

index b0fd1efddb3b0cee86b5de11209445ab533e4df2..fa9d957fff6d86b608793f6bf5dd9b00ef69e645 100644 (file)
@@ -380,7 +380,7 @@ found:
        return 1;
 
 invalid_access:
-       panic_printk("FATAL: Invalid PCI MSIX BAR write, device "
+       panic_printk("FATAL: Invalid PCI MSI-X table/PBA access, device "
                     "%02x:%02x.%x\n", PCI_BDF_PARAMS(device->info->bdf));
        return -1;
 }