The following changes since commit 5dae13cd71f0755a1395b5a4cde635b8a6ee3f58:
Merge remote-tracking branch 'remotes/rth/tags/pull-or-20170214' into staging (2017-02-14 09:55:48 +0000) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to 65c9d60a3ad3249784348824eca69acac455bc02: target-i386: correctly propagate retaddr into SVM helpers (2017-02-16 18:37:01 +0100) ---------------------------------------------------------------- * GUEST_PANICKED improvements (Anton) * vCont gdbstub rewrite (Claudio) * Fix CPU creation with -device (Liyang) * Logging fixes for pty chardevs (Ed) * Makefile "move if changed" fix (Lin) * First part of cpu_exec refactoring (me) * SVM emulation fix (me) * apic_delivered fix (Pavel) * "info ioapic" fix (Peter) * qemu-nbd socket activation (Richard) * QOMification of mcf_uart (Thomas) ---------------------------------------------------------------- Alberto Garcia (1): qemu-doc: Clarify that -vga std is now the default Anton Nefedov (4): qemu-char: socket backend: disconnect on write error i386/cpu: add crash-information QOM property report guest crash information in GUEST_PANICKED event vl: log available guest crash information Claudio Imbrenda (2): move vm_start to cpus.c gdbstub: Fix vCont behaviour Dou Liyang (1): vl: Move the cpu_synchronize_all_post_init() after generic devices initialization Ed Swierk (1): char: drop data written to a disconnected pty Lin Ma (1): Makefile: avoid leaving the temporary QEMU_PKGVERSION header file Paolo Bonzini (7): test-vmstate: remove yield_until_fd_readable cpu-exec: fix icount out-of-bounds access cpu-exec: tighten barrier on TCG_EXIT_REQUESTED cpu-exec: avoid cpu_loop_exit in cpu_handle_interrupt cpu-exec: avoid repeated sigsetjmp on interrupts cpu-exec: remove outermost infinite loop target-i386: correctly propagate retaddr into SVM helpers Pavel Dovgalyuk (1): apic: reset apic_delivered global variable on machine reset Peter Xu (3): kvm/ioapic: dump real object instead of a fake one ioapic: fix error report value of def version kvm/ioapic: correct kvm ioapic version Richard W.M. Jones (1): qemu-nbd: Implement socket activation. Thomas Huth (1): hw/char/mcf_uart: QOMify the ColdFire UART Makefile | 6 +- chardev/char-pty.c | 2 +- chardev/char-socket.c | 10 +++ cpu-exec.c | 86 ++++++++++--------- cpus.c | 42 ++++++++++ gdbstub.c | 209 +++++++++++++++++++++++++++++++++++----------- hw/char/mcf_uart.c | 102 ++++++++++++++++------ hw/i386/kvm/ioapic.c | 13 ++- hw/intc/apic_common.c | 2 + hw/intc/ioapic.c | 6 +- hw/m68k/mcf5208.c | 6 +- hw/misc/pvpanic.c | 2 +- hw/ppc/spapr_rtas.c | 3 +- include/exec/exec-all.h | 1 + include/hw/m68k/mcf.h | 6 +- include/qom/cpu.h | 10 +++ include/sysemu/sysemu.h | 4 +- kvm-all.c | 3 +- qapi-schema.json | 24 ++++++ qapi/event.json | 6 +- qemu-nbd.c | 172 ++++++++++++++++++++++++++++++++++++-- qemu-options.hx | 4 +- qom/cpu.c | 11 +++ target/i386/cpu.c | 51 +++++++++++ target/i386/cpu.h | 5 +- target/i386/excp_helper.c | 11 +-- target/i386/helper.h | 1 - target/i386/misc_helper.c | 24 +++--- target/i386/seg_helper.c | 6 +- target/i386/svm_helper.c | 65 +++++++------- target/s390x/kvm.c | 4 +- tests/test-vmstate.c | 11 --- vl.c | 56 +++++-------- 33 files changed, 711 insertions(+), 253 deletions(-) -- 1.8.3.1