The following changes since commit e329ad2ab72c43b56df88b34954c2c7d839bb373:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190513' into staging (2019-05-14 10:08:47 +0100) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to ff4a1ff34ba90203845d9668d4ef7d7b5973c64b: hw/net/ne2000: Extract the PCI device from the chipset common code (2019-05-15 11:56:54 +0200) ---------------------------------------------------------------- Mostly bugfixes and cleanups, the most important being "megasas: fix mapped frame size" from Peter Lieven. In addition, -realtime is marked as deprecated. ---------------------------------------------------------------- Chen Zhang (1): hvf: Add missing break statement Igor Mammedov (1): roms: assert if max rom size is less than the used size Laurent Vivier (5): trace: only include trace-event-subdirs when they are needed build: replace GENERATED_FILES by generated-files-y configure: qemu-ga is only needed with softmmu targets build: chardev is only needed for softmmu targets build: don't build hardware objects with linux-user Marc-André Lureau (1): vl: fix -sandbox parsing crash when seccomp support is disabled Paolo Bonzini (2): mips-fulong2e: obey -vga none sun4m: obey -vga none Peter Lieven (1): megasas: fix mapped frame size Philippe Mathieu-Daudé (5): vl: Add missing descriptions to the VGA adapters list hw/acpi/piix4: Move TYPE_PIIX4_PM to a public header hw/i386/acpi: Add object_resolve_type_unambiguous to improve modularity hw/i386/acpi: Assert a pointer is not null BEFORE using it hw/net/ne2000: Extract the PCI device from the chipset common code Thomas Huth (3): hw/input: Add a CONFIG_PS2 switch for the ps2.c file Declare -realtime as deprecated hw/char: Move multi-serial devices into separate file Vitaly Kuznetsov (1): ioapic: allow buggy guests mishandling level-triggered interrupts to make progress Wei Yang (1): memory: correct the comment to DIRTY_MEMORY_MIGRATION Makefile | 43 ++++---- Makefile.objs | 22 ++-- Makefile.target | 6 +- configure | 4 +- hw/acpi/piix4.c | 13 --- hw/char/Kconfig | 6 ++ hw/char/Makefile.objs | 1 + hw/char/serial-pci-multi.c | 208 ++++++++++++++++++++++++++++++++++++++ hw/char/serial-pci.c | 170 ------------------------------- hw/core/loader.c | 1 + hw/i386/acpi-build.c | 22 +++- hw/input/Kconfig | 5 + hw/input/Makefile.objs | 2 +- hw/intc/ioapic.c | 57 ++++++++++- hw/intc/trace-events | 1 + hw/isa/lpc_ich9.c | 11 -- hw/mips/mips_fulong2e.c | 10 +- hw/net/Kconfig | 7 +- hw/net/Makefile.objs | 3 +- hw/net/ne2000-pci.c | 132 ++++++++++++++++++++++++ hw/net/ne2000.c | 105 ------------------- hw/scsi/megasas.c | 2 +- hw/sparc/sun4m.c | 6 +- include/hw/acpi/piix4.h | 2 +- include/hw/i386/ich9.h | 2 - include/hw/i386/ioapic_internal.h | 3 + memory.c | 4 +- qemu-deprecated.texi | 5 + target/i386/hvf/hvf.c | 1 + target/s390x/Makefile.objs | 2 +- tests/Makefile.include | 116 ++++++++++----------- vl.c | 22 ++-- 32 files changed, 568 insertions(+), 426 deletions(-) create mode 100644 hw/char/serial-pci-multi.c create mode 100644 hw/net/ne2000-pci.c -- 1.8.3.1