diff options
-rw-r--r-- | meta/recipes-devtools/qemu/qemu/0001-pci-assign-sync-MSI-MSI-X-cap-and-table-with-PCIDevi.patch | 71 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_2.7.0.bb | 1 |
2 files changed, 72 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu/0001-pci-assign-sync-MSI-MSI-X-cap-and-table-with-PCIDevi.patch b/meta/recipes-devtools/qemu/qemu/0001-pci-assign-sync-MSI-MSI-X-cap-and-table-with-PCIDevi.patch new file mode 100644 index 0000000000..03472dd0bf --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu/0001-pci-assign-sync-MSI-MSI-X-cap-and-table-with-PCIDevi.patch | |||
@@ -0,0 +1,71 @@ | |||
1 | From 6baa545df93253fced4fc0d52b14b98447e00473 Mon Sep 17 00:00:00 2001 | ||
2 | From: Peter Xu <peterx@redhat.com> | ||
3 | Date: Mon, 28 Nov 2016 15:02:44 +0800 | ||
4 | Subject: [PATCH] pci-assign: sync MSI/MSI-X cap and table with PCIDevice | ||
5 | |||
6 | Since commit e1d4fb2d ("kvm-irqchip: x86: add msi route notify fn"), | ||
7 | kvm_irqchip_add_msi_route() starts to use pci_get_msi_message() to fetch | ||
8 | MSI info. This requires that we setup MSI related fields in PCIDevice. | ||
9 | For most devices, that won't be a problem, as long as we are using | ||
10 | general interfaces like msi_init()/msix_init(). | ||
11 | |||
12 | However, for pci-assign devices, MSI/MSI-X is treated differently - PCI | ||
13 | assign devices are maintaining its own MSI table and cap information in | ||
14 | AssignedDevice struct. however that's not synced up with PCIDevice's | ||
15 | fields. That will leads to pci_get_msi_message() failed to find correct | ||
16 | MSI capability, even with an NULL msix_table. | ||
17 | |||
18 | A quick fix is to sync up the two places: both the capability bits and | ||
19 | table address for MSI/MSI-X. | ||
20 | |||
21 | Upstream-Status: Backport [https://lists.gnu.org/archive/html/qemu-devel/2016-11/msg04649.html] | ||
22 | |||
23 | Reported-by: Changlimin <address@hidden> | ||
24 | Tested-by: Changlimin <address@hidden> | ||
25 | Cc: address@hidden | ||
26 | Fixes: e1d4fb2d ("kvm-irqchip: x86: add msi route notify fn") | ||
27 | Signed-off-by: Peter Xu <address@hidden> | ||
28 | Signed-off-by: He Zhe <zhe.he@windriver.com> | ||
29 | --- | ||
30 | hw/i386/kvm/pci-assign.c | 4 ++++ | ||
31 | 1 file changed, 4 insertions(+) | ||
32 | |||
33 | diff --git a/hw/i386/kvm/pci-assign.c b/hw/i386/kvm/pci-assign.c | ||
34 | index 8238fbc..87dcbdd 100644 | ||
35 | --- a/hw/i386/kvm/pci-assign.c | ||
36 | +++ b/hw/i386/kvm/pci-assign.c | ||
37 | @@ -1251,6 +1251,7 @@ static int assigned_device_pci_cap_init(PCIDevice *pci_dev, Error **errp) | ||
38 | error_propagate(errp, local_err); | ||
39 | return -ENOTSUP; | ||
40 | } | ||
41 | + dev->dev.cap_present |= QEMU_PCI_CAP_MSI; | ||
42 | dev->cap.available |= ASSIGNED_DEVICE_CAP_MSI; | ||
43 | /* Only 32-bit/no-mask currently supported */ | ||
44 | ret = pci_add_capability2(pci_dev, PCI_CAP_ID_MSI, pos, 10, | ||
45 | @@ -1285,6 +1286,7 @@ static int assigned_device_pci_cap_init(PCIDevice *pci_dev, Error **errp) | ||
46 | error_propagate(errp, local_err); | ||
47 | return -ENOTSUP; | ||
48 | } | ||
49 | + dev->dev.cap_present |= QEMU_PCI_CAP_MSIX; | ||
50 | dev->cap.available |= ASSIGNED_DEVICE_CAP_MSIX; | ||
51 | ret = pci_add_capability2(pci_dev, PCI_CAP_ID_MSIX, pos, 12, | ||
52 | &local_err); | ||
53 | @@ -1648,6 +1650,7 @@ static void assigned_dev_register_msix_mmio(AssignedDevice *dev, Error **errp) | ||
54 | dev->msix_table = NULL; | ||
55 | return; | ||
56 | } | ||
57 | + dev->dev.msix_table = (uint8_t *)dev->msix_table; | ||
58 | |||
59 | assigned_dev_msix_reset(dev); | ||
60 | |||
61 | @@ -1665,6 +1668,7 @@ static void assigned_dev_unregister_msix_mmio(AssignedDevice *dev) | ||
62 | error_report("error unmapping msix_table! %s", strerror(errno)); | ||
63 | } | ||
64 | dev->msix_table = NULL; | ||
65 | + dev->dev.msix_table = NULL; | ||
66 | } | ||
67 | |||
68 | static const VMStateDescription vmstate_assigned_device = { | ||
69 | -- | ||
70 | 2.8.3 | ||
71 | |||
diff --git a/meta/recipes-devtools/qemu/qemu_2.7.0.bb b/meta/recipes-devtools/qemu/qemu_2.7.0.bb index 2b5cc5e01a..0d680a7eee 100644 --- a/meta/recipes-devtools/qemu/qemu_2.7.0.bb +++ b/meta/recipes-devtools/qemu/qemu_2.7.0.bb | |||
@@ -13,6 +13,7 @@ SRC_URI += "file://configure-fix-Darwin-target-detection.patch \ | |||
13 | file://0002-fix-CVE-2016-7423.patch \ | 13 | file://0002-fix-CVE-2016-7423.patch \ |
14 | file://0003-fix-CVE-2016-7908.patch \ | 14 | file://0003-fix-CVE-2016-7908.patch \ |
15 | file://0004-fix-CVE-2016-7909.patch \ | 15 | file://0004-fix-CVE-2016-7909.patch \ |
16 | file://0001-pci-assign-sync-MSI-MSI-X-cap-and-table-with-PCIDevi.patch \ | ||
16 | " | 17 | " |
17 | 18 | ||
18 | SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2" | 19 | SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2" |