* qemu-kvm: fix infinite recursion in pci
@ 2009-12-15 12:58 Michael S. Tsirkin
2009-12-17 8:25 ` Avi Kivity
0 siblings, 1 reply; 2+ messages in thread
From: Michael S. Tsirkin @ 2009-12-15 12:58 UTC (permalink / raw)
To: Hannes Reinecke; +Cc: Avi Kivity, kvm
Make config reads for assigned devices work
like they used to: both pci_default_read_config
and pci_default_cap_read_config call to pci_read_config,
which does the actual work.
This fixes infinite recursion introduced by
recent merge from stable-0.12.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reported-by: Hannes Reinecke <hare@suse.de>
Tested-by: Hannes Reinecke <hare@suse.de>
---
diff --git a/hw/pci.c b/hw/pci.c
index 110a5fc..a74d3d4 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -1016,19 +1016,26 @@ static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled)
}
}
+static uint32_t pci_read_config(PCIDevice *d,
+ uint32_t address, int len)
+{
+ uint32_t val = 0;
+
+ len = MIN(len, pci_config_size(d) - address);
+ memcpy(&val, d->config + address, len);
+ return le32_to_cpu(val);
+}
+
uint32_t pci_default_read_config(PCIDevice *d,
uint32_t address, int len)
{
- uint32_t val = 0;
assert(len == 1 || len == 2 || len == 4);
if (pci_access_cap_config(d, address, len)) {
return d->cap.config_read(d, address, len);
}
- len = MIN(len, pci_config_size(d) - address);
- memcpy(&val, d->config + address, len);
- return le32_to_cpu(val);
+ return pci_read_config(d, address, len);
}
static void pci_write_config(PCIDevice *pci_dev,
@@ -1052,7 +1059,7 @@ int pci_access_cap_config(PCIDevice *pci_dev, uint32_t address, int len)
uint32_t pci_default_cap_read_config(PCIDevice *pci_dev,
uint32_t address, int len)
{
- return pci_default_read_config(pci_dev, address, len);
+ return pci_read_config(pci_dev, address, len);
}
void pci_default_cap_write_config(PCIDevice *pci_dev,
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: qemu-kvm: fix infinite recursion in pci
2009-12-15 12:58 qemu-kvm: fix infinite recursion in pci Michael S. Tsirkin
@ 2009-12-17 8:25 ` Avi Kivity
0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2009-12-17 8:25 UTC (permalink / raw)
To: Michael S. Tsirkin; +Cc: Hannes Reinecke, kvm
On 12/15/2009 02:58 PM, Michael S. Tsirkin wrote:
> Make config reads for assigned devices work
> like they used to: both pci_default_read_config
> and pci_default_cap_read_config call to pci_read_config,
> which does the actual work.
>
> This fixes infinite recursion introduced by
> recent merge from stable-0.12.
>
>
Applied to master and 0.12, thanks.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-17 8:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-15 12:58 qemu-kvm: fix infinite recursion in pci Michael S. Tsirkin
2009-12-17 8:25 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).