From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41135) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1bwb-0001Eg-L9 for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:29:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1bwY-0006Qs-EA for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:29:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49862) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c1bwY-0006Qm-6n for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:29:46 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7DF1DC056800 for ; Tue, 1 Nov 2016 16:29:45 +0000 (UTC) Received: from donizetti.redhat.com (ovpn-112-44.ams2.redhat.com [10.36.112.44]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uA1GThGl005173 for ; Tue, 1 Nov 2016 12:29:44 -0400 From: Paolo Bonzini Date: Tue, 1 Nov 2016 17:29:13 +0100 Message-Id: <1478017783-7703-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL v2 00/30] Misc patches for 2016-10-31 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit 39542105bbb19c690219d2f22844d8dfbd9bba= 05: Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into sta= ging (2016-11-01 12:48:07 +0000) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to a92e5ebbcea7c1d16f4aa75b08fce298fcd4cdfa: main-loop: Suppress I/O thread warning under qtest (2016-11-01 16:07:37= +0100) ---------------------------------------------------------------- * NBD bugfix (Changlong) * NBD write zeroes support (Eric) * Memory backend fixes (Haozhong) * Atomics fix (Alex) * New AVX512 features (Luwei) * "make check" logging fix (Paolo) * Chardev refactoring fallout (Paolo) * Small checkpatch improvements (Paolo, Jeff) ---------------------------------------------------------------- Alex Benn=C3=A9e (1): exec.c: ensure all AddressSpaceDispatch updates under RCU Changlong Xie (1): nbd: Use CoQueue for free_sema instead of CoMutex Christian Borntraeger (1): vl: exit qemu on guest panic if -no-shutdown is not set Eric Blake (16): nbd: Add qemu-nbd -D for human-readable description nbd: Treat flags vs. command type as separate fields nbd: Rename NBDRequest to NBDRequestData nbd: Rename NbdClientSession to NBDClientSession nbd: Rename struct nbd_request and nbd_reply nbd: Share common reply-sending code in server nbd: Send message along with server NBD_REP_ERR errors nbd: Share common option-sending code in client nbd: Let server know when client gives up negotiation nbd: Let client skip portions of server reply nbd: Less allocation during NBD_OPT_LIST nbd: Support shorter handshake nbd: Refactor conversion to errno to silence checkpatch nbd: Improve server handling of shutdown requests nbd: Implement NBD_CMD_WRITE_ZEROES on server nbd: Implement NBD_CMD_WRITE_ZEROES on client Haozhong Zhang (2): exec.c: do not truncate non-empty memory backend file exec.c: check memory backend file size with 'size' option Jeff Cody (1): checkpatch: allow spaces before parenthesis for 'coroutine_fn' Luwei Kang (1): x86: add AVX512_4VNNIW and AVX512_4FMAPS features Max Reitz (1): main-loop: Suppress I/O thread warning under qtest Paolo Bonzini (5): checkpatch: tweak "struct should normally be const" warning qemu-error: remove dependency of stubs on monitor tests: send error_report to test log qemu-char: do not forward events through the mux until QEMU has sta= rted slirp: fix CharDriver breakage Pranith Kumar (1): docs/rcu.txt: Fix minor typo block/nbd-client.c | 104 +++++---- block/nbd-client.h | 12 +- block/nbd.c | 8 +- docs/rcu.txt | 2 +- exec.c | 33 ++- include/block/nbd.h | 73 +++++-- include/glib-compat.h | 13 ++ include/qemu/error-report.h | 1 + include/qemu/osdep.h | 3 + main-loop.c | 2 +- monitor.c | 21 ++ nbd/client.c | 498 ++++++++++++++++++++++++--------------= ------ nbd/nbd-internal.h | 12 +- nbd/server.c | 292 ++++++++++++++++++-------- net/slirp.c | 3 +- qapi-schema.json | 4 +- qemu-char.c | 8 +- qemu-nbd.c | 12 +- qemu-nbd.texi | 5 +- scripts/checkpatch.pl | 6 +- stubs/Makefile.objs | 2 +- stubs/error-printf.c | 19 ++ stubs/mon-printf.c | 11 - target-i386/cpu.c | 19 +- target-i386/cpu.h | 4 + util/qemu-error.c | 26 +-- vl.c | 5 + 27 files changed, 763 insertions(+), 435 deletions(-) create mode 100644 stubs/error-printf.c delete mode 100644 stubs/mon-printf.c --=20 2.7.4