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 <m...@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