qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/23] pc,pci,vhost,net fixes, enhancements
@ 2014-06-23 15:53 Michael S. Tsirkin
  2014-06-23 15:53 ` [Qemu-devel] [PULL 01/23] vhost: block migration if backend does not log memory Michael S. Tsirkin
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: Michael S. Tsirkin @ 2014-06-23 15:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Anthony Liguori

The following changes since commit d9c1647d896d3192cba9dbf98fb7efab876edde5:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2014-06-23 12:55:22 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to c4f5cdc53f181f6fe84a0f1bf99914598934a8a6:

  xen-hvm: Handle machine opt max-ram-below-4g (2014-06-23 18:02:55 +0300)

----------------------------------------------------------------
pc,pci,vhost,net fixes, enhancements

Don's patches to limit below-4g ram for pc
Marcel's pcie hotplug rewrite
Gabriel's changes to e1000 auto-negotiation
qemu char bugfixes by Stefan
misc bugfixes

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Don Slutz (3):
      xen-hvm: Fix xen_hvm_init() to adjust pc memory layout
      pc & q35: Add new machine opt max-ram-below-4g
      xen-hvm: Handle machine opt max-ram-below-4g

Eduardo Habkost (1):
      q35: Use PC_Q35_COMPAT_1_4 on pc-q35-1.4 compat_props

Fam Zheng (1):
      virtio-pci: Report an error when msix vectors init fails

Gabriel L. Somlo (5):
      e1000: emulate auto-negotiation during external link status change
      e1000: improve auto-negotiation reporting via mii-tool
      e1000: signal guest on successful link auto-negotiation
      e1000: move e1000_autoneg_timer() to after set_ics()
      e1000: factor out checking for auto-negotiation availability

Hu Tao (1):
      qapi/string-output-visitor: fix human output

Igor Mammedov (1):
      qapi/hmp: use 'backend' instead of 'device' with memory backend

Marcel Apfelbaum (3):
      hw/pcie: correct debug message
      hw/pcie: implement power controller functionality
      hw/pcie: better hotplug/hotunplug support

Michael S. Tsirkin (3):
      vhost: block migration if backend does not log memory
      vhost: fix resource leak in error handling
      pcie: coding style tweak

Nikolay Nikolaev (3):
      libqemustub: add more stubs for qemu-char
      qtest: fix qtest for vhost-user
      qtest: fix vhost-user-test unbalanced mutex locks

Stefan Hajnoczi (2):
      qemu-char: fix qemu_chr_fe_get_msgfd()
      qemu-char: avoid leaking unused fds in tcp_get_msgfds()

 qapi-schema.json                   |  12 ++--
 hw/net/e1000_regs.h                |   3 +
 include/hw/i386/pc.h               |  13 +++-
 include/hw/pci/pci.h               |   3 +
 include/hw/pci/pcie.h              |   2 +
 include/hw/pci/pcie_regs.h         |   2 +
 include/hw/virtio/vhost.h          |   1 +
 include/hw/xen/xen.h               |   3 +-
 hmp.c                              |   2 +-
 hw/i386/pc.c                       |  47 ++++++++++++++
 hw/i386/pc_piix.c                  |  53 ++++++++++-----
 hw/i386/pc_q35.c                   |  53 ++++++++++-----
 hw/net/e1000.c                     |  73 +++++++++++----------
 hw/pci-bridge/ioh3420.c            |   7 ++
 hw/pci-bridge/xio3130_downstream.c |   7 ++
 hw/pci/pcie.c                      |  62 ++++++++++++++++--
 hw/virtio/vhost.c                  |  21 ++++--
 hw/virtio/virtio-pci.c             |   2 +
 monitor.c                          |   2 +-
 qapi/string-output-visitor.c       |   2 +-
 qemu-char.c                        |   9 ++-
 stubs/chr-baum-init.c              |   7 ++
 stubs/qemu-chr-open-spice.c        |  14 ++++
 tests/vhost-user-test.c            | 128 ++++++++++++++++++++++++++++++++-----
 vl.c                               |   4 ++
 xen-hvm-stub.c                     |   3 +-
 xen-hvm.c                          |  53 +++++++++------
 stubs/Makefile.objs                |   2 +
 28 files changed, 469 insertions(+), 121 deletions(-)
 create mode 100644 stubs/chr-baum-init.c
 create mode 100644 stubs/qemu-chr-open-spice.c

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

end of thread, other threads:[~2014-06-24 11:22 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-23 15:53 [Qemu-devel] [PULL 00/23] pc,pci,vhost,net fixes, enhancements Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 01/23] vhost: block migration if backend does not log memory Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 02/23] vhost: fix resource leak in error handling Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 03/23] qapi/hmp: use 'backend' instead of 'device' with memory backend Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 04/23] libqemustub: add more stubs for qemu-char Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 05/23] qtest: fix qtest for vhost-user Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 06/23] qtest: fix vhost-user-test unbalanced mutex locks Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 07/23] e1000: emulate auto-negotiation during external link status change Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 08/23] e1000: improve auto-negotiation reporting via mii-tool Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 09/23] e1000: signal guest on successful link auto-negotiation Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 10/23] e1000: move e1000_autoneg_timer() to after set_ics() Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 11/23] e1000: factor out checking for auto-negotiation availability Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 12/23] qapi/string-output-visitor: fix human output Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 13/23] qemu-char: fix qemu_chr_fe_get_msgfd() Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 14/23] qemu-char: avoid leaking unused fds in tcp_get_msgfds() Michael S. Tsirkin
2014-06-23 15:53 ` [Qemu-devel] [PULL 15/23] virtio-pci: Report an error when msix vectors init fails Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 16/23] q35: Use PC_Q35_COMPAT_1_4 on pc-q35-1.4 compat_props Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 17/23] hw/pcie: correct debug message Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 18/23] hw/pcie: implement power controller functionality Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 19/23] hw/pcie: better hotplug/hotunplug support Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 20/23] pcie: coding style tweak Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 21/23] xen-hvm: Fix xen_hvm_init() to adjust pc memory layout Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 22/23] pc & q35: Add new machine opt max-ram-below-4g Michael S. Tsirkin
2014-06-23 15:54 ` [Qemu-devel] [PULL 23/23] xen-hvm: Handle " Michael S. Tsirkin
2014-06-24 11:21 ` [Qemu-devel] [PULL 00/23] pc,pci,vhost,net fixes, enhancements Peter Maydell

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).