qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] rtl8139, pci, ioeventfd
@ 2011-01-11 22:42 Michael S. Tsirkin
  2011-01-17 16:15 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Michael S. Tsirkin @ 2011-01-11 22:42 UTC (permalink / raw)
  To: qemu-devel, Anthony Liguori
  Cc: stefanha, quintela, mst, alex.williamson, kraxel, aurelien

The following changes since commit 05bf441eb69a813d3893174d54faa6afa8c0d39b:

  cris: Remove unused orig_flags (2011-01-10 23:28:08 +0100)

are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/mst/qemu.git for_anthony

Alex Williamson (2):
      qdev: Track runtime machine modifications
      rtl8139: Use subsection to restrict migration after hotplug

Gerd Hoffmann (4):
      pci: allow devices being tagged as not hotpluggable.
      piix: tag as not hotpluggable.
      vga: tag as not hotplugable.
      qxl: tag as not hotpluggable

Michael S. Tsirkin (3):
      Merge remote branch 'origin/master' into pci
      virtio: move vmstate change tracking to core
      ioeventfd: error handling cleanup

Stefan Hajnoczi (4):
      virtio-pci: Rename bugs field to flags
      kvm: test for ioeventfd support on old kernels
      virtio-pci: Use ioeventfd for virtqueue notify
      docs: Document virtio PCI -device ioeventfd=on|off

 Makefile.objs            |    4 +-
 Makefile.target          |    2 +
 docs/qdev-device-use.txt |    8 ++-
 hmp-commands.hx          |   25 +++++
 hw/acpi_piix4.c          |    2 +
 hw/cirrus_vga.c          |    1 +
 hw/ide/piix.c            |    2 +
 hw/pc_piix.c             |   12 +--
 hw/pci-stub.c            |   50 ++++++++++
 hw/pci.c                 |   92 ++++++++++++++++++--
 hw/pci.h                 |    5 +
 hw/pcie.c                |   11 +--
 hw/pcie.h                |    2 -
 hw/pcie_aer.c            |  223 ++++++++++++++++++++++++++++++++++++++++++++++
 hw/piix4.c               |    1 +
 hw/piix_pci.c            |    2 +
 hw/qdev.c                |   23 ++++-
 hw/qdev.h                |    6 +-
 hw/qxl.c                 |    1 +
 hw/rtl8139.c             |   28 ++++++-
 hw/vga-pci.c             |    1 +
 hw/virtio-net.c          |   28 ++-----
 hw/virtio-pci.c          |  213 ++++++++++++++++++++++++++++++++++++++------
 hw/virtio.c              |   36 +++++++-
 hw/virtio.h              |    4 +
 hw/vmware_vga.c          |    1 +
 hw/xio3130_downstream.c  |    2 +-
 hw/xio3130_upstream.c    |    3 -
 kvm-all.c                |   49 ++++++++++
 kvm-stub.c               |    5 +
 kvm.h                    |    1 +
 qerror.c                 |    4 +
 qerror.h                 |    3 +
 sysemu.h                 |    5 +
 vl.c                     |    4 +-
 35 files changed, 769 insertions(+), 90 deletions(-)
 create mode 100644 hw/pci-stub.c

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PULL] rtl8139, pci, ioeventfd
  2011-01-11 22:42 [Qemu-devel] [PULL] rtl8139, pci, ioeventfd Michael S. Tsirkin
@ 2011-01-17 16:15 ` Anthony Liguori
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2011-01-17 16:15 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: stefanha, quintela, qemu-devel, alex.williamson, kraxel, aurelien

On 01/11/2011 04:42 PM, Michael S. Tsirkin wrote:
> The following changes since commit 05bf441eb69a813d3893174d54faa6afa8c0d39b:
>
>    cris: Remove unused orig_flags (2011-01-10 23:28:08 +0100)
>
> are available in the git repository at:
>    git://git.kernel.org/pub/scm/linux/kernel/git/mst/qemu.git for_anthony
>    

Pulled.  Thanks.

Regards,

Anthony Liguori

> Alex Williamson (2):
>        qdev: Track runtime machine modifications
>        rtl8139: Use subsection to restrict migration after hotplug
>
> Gerd Hoffmann (4):
>        pci: allow devices being tagged as not hotpluggable.
>        piix: tag as not hotpluggable.
>        vga: tag as not hotplugable.
>        qxl: tag as not hotpluggable
>
> Michael S. Tsirkin (3):
>        Merge remote branch 'origin/master' into pci
>        virtio: move vmstate change tracking to core
>        ioeventfd: error handling cleanup
>
> Stefan Hajnoczi (4):
>        virtio-pci: Rename bugs field to flags
>        kvm: test for ioeventfd support on old kernels
>        virtio-pci: Use ioeventfd for virtqueue notify
>        docs: Document virtio PCI -device ioeventfd=on|off
>
>   Makefile.objs            |    4 +-
>   Makefile.target          |    2 +
>   docs/qdev-device-use.txt |    8 ++-
>   hmp-commands.hx          |   25 +++++
>   hw/acpi_piix4.c          |    2 +
>   hw/cirrus_vga.c          |    1 +
>   hw/ide/piix.c            |    2 +
>   hw/pc_piix.c             |   12 +--
>   hw/pci-stub.c            |   50 ++++++++++
>   hw/pci.c                 |   92 ++++++++++++++++++--
>   hw/pci.h                 |    5 +
>   hw/pcie.c                |   11 +--
>   hw/pcie.h                |    2 -
>   hw/pcie_aer.c            |  223 ++++++++++++++++++++++++++++++++++++++++++++++
>   hw/piix4.c               |    1 +
>   hw/piix_pci.c            |    2 +
>   hw/qdev.c                |   23 ++++-
>   hw/qdev.h                |    6 +-
>   hw/qxl.c                 |    1 +
>   hw/rtl8139.c             |   28 ++++++-
>   hw/vga-pci.c             |    1 +
>   hw/virtio-net.c          |   28 ++-----
>   hw/virtio-pci.c          |  213 ++++++++++++++++++++++++++++++++++++++------
>   hw/virtio.c              |   36 +++++++-
>   hw/virtio.h              |    4 +
>   hw/vmware_vga.c          |    1 +
>   hw/xio3130_downstream.c  |    2 +-
>   hw/xio3130_upstream.c    |    3 -
>   kvm-all.c                |   49 ++++++++++
>   kvm-stub.c               |    5 +
>   kvm.h                    |    1 +
>   qerror.c                 |    4 +
>   qerror.h                 |    3 +
>   sysemu.h                 |    5 +
>   vl.c                     |    4 +-
>   35 files changed, 769 insertions(+), 90 deletions(-)
>   create mode 100644 hw/pci-stub.c
>
>
>    

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-01-17 16:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-11 22:42 [Qemu-devel] [PULL] rtl8139, pci, ioeventfd Michael S. Tsirkin
2011-01-17 16: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).