* [Qemu-devel] [PULL] virtio,pci,qom
@ 2013-03-18 12:38 Michael S. Tsirkin
0 siblings, 0 replies; 3+ messages in thread
From: Michael S. Tsirkin @ 2013-03-18 12:38 UTC (permalink / raw)
To: qemu-devel, Anthony Liguori
Cc: alex.williamson, milosivanovic, jasowang, stefanha, mst
The following changes since commit b1999e87b4d42305419329cae459e1b43f706d96:
Fix TAGS creation (2013-03-15 11:36:49 -0500)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_anthony
for you to fetch changes up to de14103c5c8e7eee9319d54a2e02258ee8415eb7:
pcie: Mangle types to match topology (2013-03-17 14:19:23 +0200)
----------------------------------------------------------------
virtio,pci,qom
Work by Alex to support VGA assignment,
pci and virtio fixes by Stefan, Jason and myself, and a
new qmp event for hotplug support by myself.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Alex Williamson (12):
pci: Add PCI VGA helpers
pci: Teach PCI Bridges about VGA routing
pci: Fix INTx routing notifier recursion
pci_bridge: Use a default map_irq function
pci_bridge: Remove duplicate IRQ swizzle function
pci: Create and register a new PCI Express TypeInfo
pci: Move PCI and PCIE type defines
pci: Allow PCI bus creation interfaces to specify the type of bus
pci: Q35, Root Ports, and Switches create PCI Express buses
pci: Create pci_bus_is_express helper
pci: Create and use API to determine root buses
pcie: Mangle types to match topology
Jason Wang (1):
virtio-net: remove layout assumptions for mq ctrl
Michael S. Tsirkin (6):
qdev: DEVICE_DELETED event
qom: pass original path to unparent method
qmp: add path to device_deleted event
virtio-pci: guest notifier mask without non-irqfd
pci_bridge: factor out common code
pci_bridge: drop formatting from source
Stefan Hajnoczi (2):
pci: refuse empty ROM files
exec: assert that RAMBlock size is non-zero
QMP/qmp-events.txt | 18 +++++++
exec.c | 2 +
hw/alpha_typhoon.c | 2 +-
hw/apb_pci.c | 4 +-
hw/bonito.c | 2 +-
hw/dec_pci.c | 7 ++-
hw/grackle_pci.c | 2 +-
hw/gt64xxx.c | 2 +-
hw/i82801b11.c | 2 +-
hw/ioh3420.c | 2 +-
hw/pci/pci.c | 121 ++++++++++++++++++++++++++++++++++++++--------
hw/pci/pci.h | 34 +++++++++++--
hw/pci/pci_bridge.c | 51 ++++++++++++++++---
hw/pci/pci_bridge.h | 17 +++----
hw/pci/pci_bus.h | 10 ++--
hw/pci/pcie.c | 13 +++++
hw/pci/pcie_port.c | 18 ++++---
hw/pci_bridge_dev.c | 11 +----
hw/piix_pci.c | 2 +-
hw/ppc4xx_pci.c | 2 +-
hw/ppce500_pci.c | 2 +-
hw/prep_pci.c | 2 +-
hw/q35.c | 3 +-
hw/qdev.c | 16 +++++-
hw/sh_pci.c | 2 +-
hw/spapr_pci.c | 2 +-
hw/unin_pci.c | 4 +-
hw/versatile_pci.c | 2 +-
hw/virtio-net.c | 23 ++++-----
hw/virtio-pci.c | 79 ++++++++++++++++--------------
hw/xio3130_downstream.c | 2 +-
hw/xio3130_upstream.c | 2 +-
include/monitor/monitor.h | 1 +
include/qom/object.h | 3 +-
monitor.c | 1 +
qapi-schema.json | 4 +-
qom/object.c | 4 +-
37 files changed, 344 insertions(+), 130 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] [PULL] virtio,pci,qom
@ 2013-03-26 19:29 Michael S. Tsirkin
2013-03-27 21:15 ` Anthony Liguori
0 siblings, 1 reply; 3+ messages in thread
From: Michael S. Tsirkin @ 2013-03-26 19:29 UTC (permalink / raw)
To: qemu-devel, Anthony Liguori
Cc: alex.williamson, milosivanovic, jasowang, stefanha, mst
The following changes since commit b1999e87b4d42305419329cae459e1b43f706d96:
Fix TAGS creation (2013-03-15 11:36:49 -0500)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_anthony
for you to fetch changes up to 6214e73cc5b75a4f8d89a70d71727edfa47a81b3:
pcie: Add endpoint capability initialization wrapper (2013-03-26 21:02:19 +0200)
----------------------------------------------------------------
virtio,pci,qom
Work by Alex to support VGA assignment,
pci and virtio fixes by Stefan, Jason and myself, and a
new qmp event for hotplug support by myself.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Alex Williamson (13):
pci: Add PCI VGA helpers
pci: Teach PCI Bridges about VGA routing
pci: Fix INTx routing notifier recursion
pci_bridge: Use a default map_irq function
pci_bridge: Remove duplicate IRQ swizzle function
pci: Create and register a new PCI Express TypeInfo
pci: Move PCI and PCIE type defines
pci: Allow PCI bus creation interfaces to specify the type of bus
pci: Q35, Root Ports, and Switches create PCI Express buses
pci: Create pci_bus_is_express helper
pci: Create and use API to determine root buses
pcie: Mangle types to match topology
pcie: Add endpoint capability initialization wrapper
Jason Wang (1):
virtio-net: remove layout assumptions for mq ctrl
Michael S. Tsirkin (7):
qdev: DEVICE_DELETED event
qom: call class destructor before unparent
qmp: add path to device_deleted event
virtio-pci: guest notifier mask without non-irqfd
pci_bridge: factor out common code
pci_bridge: drop formatting from source
roms: switch oldnoconfig to olddefconfig
Stefan Hajnoczi (2):
pci: refuse empty ROM files
exec: assert that RAMBlock size is non-zero
QMP/qmp-events.txt | 18 +++++++
exec.c | 2 +
hw/alpha_typhoon.c | 2 +-
hw/apb_pci.c | 4 +-
hw/bonito.c | 2 +-
hw/dec_pci.c | 7 ++-
hw/grackle_pci.c | 2 +-
hw/gt64xxx.c | 2 +-
hw/i82801b11.c | 2 +-
hw/ioh3420.c | 2 +-
hw/pci/pci.c | 121 ++++++++++++++++++++++++++++++++++++++--------
hw/pci/pci.h | 34 +++++++++++--
hw/pci/pci_bridge.c | 51 ++++++++++++++++---
hw/pci/pci_bridge.h | 17 +++----
hw/pci/pci_bus.h | 10 ++--
hw/pci/pcie.c | 16 ++++++
hw/pci/pcie.h | 1 +
hw/pci/pcie_port.c | 18 ++++---
hw/pci_bridge_dev.c | 11 +----
hw/piix_pci.c | 2 +-
hw/ppc4xx_pci.c | 2 +-
hw/ppce500_pci.c | 2 +-
hw/prep_pci.c | 2 +-
hw/q35.c | 3 +-
hw/qdev.c | 14 ++++++
hw/sh_pci.c | 2 +-
hw/spapr_pci.c | 2 +-
hw/unin_pci.c | 4 +-
hw/usb/hcd-xhci.c | 2 +-
hw/versatile_pci.c | 2 +-
hw/virtio-net.c | 23 ++++-----
hw/virtio-pci.c | 79 ++++++++++++++++--------------
hw/xio3130_downstream.c | 2 +-
hw/xio3130_upstream.c | 2 +-
include/monitor/monitor.h | 1 +
monitor.c | 1 +
qapi-schema.json | 4 +-
qom/object.c | 6 +--
roms/configure-seabios.sh | 2 +-
39 files changed, 348 insertions(+), 131 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PULL] virtio,pci,qom
2013-03-26 19:29 Michael S. Tsirkin
@ 2013-03-27 21:15 ` Anthony Liguori
0 siblings, 0 replies; 3+ messages in thread
From: Anthony Liguori @ 2013-03-27 21:15 UTC (permalink / raw)
To: Michael S. Tsirkin, qemu-devel, Anthony Liguori
Cc: alex.williamson, milosivanovic, jasowang, stefanha
Pulled. Thanks.
Regards,
Anthony Liguori
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-03-27 21:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-18 12:38 [Qemu-devel] [PULL] virtio,pci,qom Michael S. Tsirkin
-- strict thread matches above, loose matches on Subject: below --
2013-03-26 19:29 Michael S. Tsirkin
2013-03-27 21:15 ` Anthony Liguori
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).