From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37983) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1Dig-0005MH-3F for qemu-devel@nongnu.org; Mon, 31 Oct 2016 10:37:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1Dif-0003mD-5E for qemu-devel@nongnu.org; Mon, 31 Oct 2016 10:37:50 -0400 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:35751) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c1Die-0003m2-UR for qemu-devel@nongnu.org; Mon, 31 Oct 2016 10:37:49 -0400 Received: by mail-wm0-x241.google.com with SMTP id 68so11973317wmz.2 for ; Mon, 31 Oct 2016 07:37:48 -0700 (PDT) Received: from donizetti.lan (dynamic-adsl-78-12-246-178.clienti.tiscali.it. [78.12.246.178]) by smtp.gmail.com with ESMTPSA id r72sm25166766wmd.21.2016.10.31.07.37.46 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 31 Oct 2016 07:37:46 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 31 Oct 2016 15:37:16 +0100 Message-Id: <1477924663-30950-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 00/27] 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 277d44f5a608055ee51e818837af226de8d015f5: Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-fetch' into staging (2016-10-31 11:58:30 +0000) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to 383503346e601b396dedbbb8197f213d476b596d: x86: add AVX512_4VNNIW and AVX512_4FMAPS features (2016-10-31 15:05:22 +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 improvement (Paolo) ---------------------------------------------------------------- Alex Bennée (1): exec.c: ensure all AddressSpaceDispatch updates under RCU Changlong Xie (1): nbd: Use CoQueue for free_sema instead of CoMutex 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 (3): exec.c: do not truncate non-empty memory backend file exec.c: check memory backend file size with 'size' option hostmem-file: make option 'size' optional Luwei Kang (1): x86: add AVX512_4VNNIW and AVX512_4FMAPS features 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 started slirp: fix CharDriver breakage backends/hostmem-file.c | 28 ++- block/nbd-client.c | 104 +++++---- block/nbd-client.h | 12 +- block/nbd.c | 8 +- exec.c | 67 ++++-- include/block/nbd.h | 73 +++++-- include/glib-compat.h | 13 ++ include/qemu/error-report.h | 1 + include/qemu/osdep.h | 3 + monitor.c | 21 ++ nbd/client.c | 498 ++++++++++++++++++++++++-------------------- nbd/nbd-internal.h | 12 +- nbd/server.c | 294 ++++++++++++++++++-------- net/slirp.c | 3 +- qemu-char.c | 8 +- qemu-nbd.c | 12 +- qemu-nbd.texi | 5 +- scripts/checkpatch.pl | 4 +- 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 +-- 24 files changed, 799 insertions(+), 448 deletions(-) create mode 100644 stubs/error-printf.c delete mode 100644 stubs/mon-printf.c -- 2.7.4