Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-16 | savevm: Remove all the unneeded version_minimum_id_old (ppc) | Juan Quintela | |
After previous Peter patch, they are redundant. This way we don't assign them except when needed. Once there, there were lots of case where the ".fields" indentation was wrong: .fields = (VMStateField []) { and .fields = (VMStateField []) { Change all the combinations to: .fields = (VMStateField[]){ The biggest problem (appart from aesthetics) was that checkpatch complained when we copy&pasted the code from one place to another. Signed-off-by: Juan Quintela <quintela@redhat.com> Acked-by: Alexey Kardashevskiy <aik@ozlabs.ru> | |||
2013-12-23 | pci-host: Consistently set cannot_instantiate_with_device_add_yet | Markus Armbruster | |
Many PCI host bridges consist of a sysbus device and a PCI device. You need both for the thing to work. Arguably, these bridges should be modelled as a single, composite devices instead of pairs of seemingly independent devices you can only use together, but we're not there, yet. Since the sysbus part can't be instantiated with device_add, yet, permitting it with the PCI part is useless. We shouldn't offer useless options to the user, so let's set cannot_instantiate_with_device_add_yet for them. It's already set for Bonito, Grackle, i440FX and Raven. Document why. Set it for the others: dec-21154, e500-host-bridge, gt64120_pci, mch, pbm-pci, ppc4xx-host-bridge, sh_pci_host, u3-agp, uni-north-agp, uni-north-internal-pci, uni-north-pci, and versatile_pci_host. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de> | |||
2013-07-04 | hw/p*: pass owner to memory_region_init* functions | Paolo Bonzini | |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | |||
2013-07-04 | memory: add owner argument to initialization functions | Paolo Bonzini | |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | |||
2013-04-08 | hw: move PCI bridges to hw/pci-* or hw/ARCH | Paolo Bonzini | |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> |