[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/5] xen/pass-through: fold host PCI command register
From: |
Stefano Stabellini |
Subject: |
[Qemu-devel] [PULL 1/5] xen/pass-through: fold host PCI command register writes |
Date: |
Mon, 22 Jun 2015 14:09:07 +0100 |
From: Jan Beulich <address@hidden>
The code introduced to address XSA-126 allows simplification of other
code in xen_pt_initfn(): All we need to do is update "cmd" suitably,
as it'll be written back to the host register near the end of the
function anyway.
Signed-off-by: Jan Beulich <address@hidden>
---
hw/xen/xen_pt.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/hw/xen/xen_pt.c b/hw/xen/xen_pt.c
index 9afcda8..8d47a45 100644
--- a/hw/xen/xen_pt.c
+++ b/hw/xen/xen_pt.c
@@ -740,10 +740,7 @@ static int xen_pt_initfn(PCIDevice *d)
machine_irq, pirq, rc);
/* Disable PCI intx assertion (turn on bit10 of devctl) */
- xen_host_pci_set_word(&s->real_device,
- PCI_COMMAND,
- pci_get_word(s->dev.config + PCI_COMMAND)
- | PCI_COMMAND_INTX_DISABLE);
+ cmd |= PCI_COMMAND_INTX_DISABLE;
machine_irq = 0;
s->machine_irq = 0;
} else {
@@ -765,9 +762,7 @@ static int xen_pt_initfn(PCIDevice *d)
e_intx, rc);
/* Disable PCI intx assertion (turn on bit10 of devctl) */
- xen_host_pci_set_word(&s->real_device, PCI_COMMAND,
- *(uint16_t *)(&s->dev.config[PCI_COMMAND])
- | PCI_COMMAND_INTX_DISABLE);
+ cmd |= PCI_COMMAND_INTX_DISABLE;
xen_pt_mapped_machine_irq[machine_irq]--;
if (xen_pt_mapped_machine_irq[machine_irq] == 0) {
--
1.7.10.4
- [Qemu-devel] [PULL 0/5] xen-220615, Stefano Stabellini, 2015/06/22
- [Qemu-devel] [PULL 5/5] Revert "xen-hvm: increase maxmem before calling xc_domain_populate_physmap", Stefano Stabellini, 2015/06/22
- [Qemu-devel] [PULL 4/5] xen/pass-through: constify some static data, Stefano Stabellini, 2015/06/22
- [Qemu-devel] [PULL 2/5] xen/pass-through: ROM BAR handling adjustments, Stefano Stabellini, 2015/06/22
- [Qemu-devel] [PULL 3/5] xen/pass-through: log errno values rather than function return ones, Stefano Stabellini, 2015/06/22
- [Qemu-devel] [PULL 1/5] xen/pass-through: fold host PCI command register writes,
Stefano Stabellini <=
- Re: [Qemu-devel] [PULL 0/5] xen-220615, Peter Maydell, 2015/06/23