From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gReTm-0003i0-Vq for qemu-devel@nongnu.org; Tue, 27 Nov 2018 09:36:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gReTi-000158-RK for qemu-devel@nongnu.org; Tue, 27 Nov 2018 09:36:46 -0500 Received: from mail-wm1-x332.google.com ([2a00:1450:4864:20::332]:55847) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gReTi-00011u-Ht for qemu-devel@nongnu.org; Tue, 27 Nov 2018 09:36:42 -0500 Received: by mail-wm1-x332.google.com with SMTP id y139so21952426wmc.5 for ; Tue, 27 Nov 2018 06:36:42 -0800 (PST) Received: from 640k.localdomain ([93.56.166.5]) by smtp.gmail.com with ESMTPSA id n62sm2821869wmd.25.2018.11.27.06.36.38 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 27 Nov 2018 06:36:39 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 27 Nov 2018 15:36:22 +0100 Message-Id: <1543329397-48407-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL v2 00/15] Misc patches for QEMU 3.1-rc3 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit 4822f1ee9efa8df56e29db0a68323b484bdb0335: Merge remote-tracking branch 'remotes/kraxel/tags/fixes-31-20181127-pull-request' into staging (2018-11-27 11:21:38 +0000) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to cb16c8466b6c62868aba47cd95fadcf316541f40: hostmem: no need to check for host_memory_backend_mr_inited() in alloc() (2018-11-27 15:35:19 +0100) ---------------------------------------------------------------- * lsi HBA reselection fix (George) * Small cleanups (Li Qiang) * bugfixes for vhost-user-bridge and hostmem (Marc-André) * single-thread TCG fix (me) * VMX migration blocker (me) * target/i386 fix for LOCK (Richard) * fix elf2dmp check (Roman) * MAINTAINERS update (Philippe, Thomas) ---------------------------------------------------------------- George Kennedy (1): lsi: Reselection needed to remove pending commands from queue Li Qiang (2): vl: Improve error message when we can't load fw_cfg from file vl.c: remove outdated comment Marc-André Lureau (4): vmstate: constify VMStateField vhost-user-bridge: fix recvmsg iovlen hostmem-memfd: honour share=on/off property hostmem: no need to check for host_memory_backend_mr_inited() in alloc() Paolo Bonzini (4): target/i386: kvm: add VMX migration blocker cpus: run work items for all vCPUs if single-threaded migration: savevm: consult migration blockers checkpatch: g_test_message does not need a trailing newline Philippe Mathieu-Daudé (1): MAINTAINERS: Add an entry for the Firmware Configuration (fw_cfg) device Richard Henderson (1): target/i386: Generate #UD when applying LOCK to a register destination Roman Kagan (1): configure: fix elf2dmp check Thomas Huth (1): MAINTAINERS: Add some missing entries related to accelerators MAINTAINERS | 18 +++++++ backends/hostmem-file.c | 24 ++++----- backends/hostmem-memfd.c | 8 ++- configure | 2 +- cpus.c | 12 +++-- hw/display/virtio-gpu.c | 4 +- hw/intc/s390_flic_kvm.c | 4 +- hw/nvram/eeprom93xx.c | 6 +-- hw/nvram/fw_cfg.c | 6 +-- hw/pci/msix.c | 4 +- hw/pci/pci.c | 8 +-- hw/pci/shpc.c | 7 +-- hw/scsi/lsi53c895a.c | 48 +++++++++++++----- hw/scsi/scsi-bus.c | 4 +- hw/timer/twl92230.c | 4 +- hw/usb/redirect.c | 12 ++--- hw/virtio/virtio.c | 8 +-- include/migration/vmstate.h | 6 +-- migration/savevm.c | 11 ++-- migration/vmstate-types.c | 119 ++++++++++++++++++++++++-------------------- migration/vmstate.c | 31 ++++++------ qemu-options.hx | 4 +- scripts/checkpatch.pl | 3 +- target/alpha/machine.c | 5 +- target/arm/machine.c | 12 ++--- target/hppa/machine.c | 10 ++-- target/i386/kvm.c | 15 ++++-- target/i386/translate.c | 35 +++++++------ target/mips/machine.c | 14 +++--- target/openrisc/machine.c | 5 +- target/ppc/machine.c | 14 +++--- target/sparc/machine.c | 7 +-- tests/vhost-user-bridge.c | 2 +- vl.c | 9 ++-- 34 files changed, 286 insertions(+), 195 deletions(-) -- 1.8.3.1