From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnEUh-0004d2-Pt for qemu-devel@nongnu.org; Sun, 01 Dec 2013 16:24:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VnEUc-0007wL-EC for qemu-devel@nongnu.org; Sun, 01 Dec 2013 16:23:59 -0500 Received: from mail-qe0-x22c.google.com ([2607:f8b0:400d:c02::22c]:40314) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnEUc-0007wG-3j for qemu-devel@nongnu.org; Sun, 01 Dec 2013 16:23:54 -0500 Received: by mail-qe0-f44.google.com with SMTP id nd7so11957240qeb.31 for ; Sun, 01 Dec 2013 13:23:52 -0800 (PST) From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Sun, 1 Dec 2013 22:23:33 +0100 Message-Id: <1385933027-21261-1-git-send-email-marcandre.lureau@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCHv2 00/14] Spice block device, ready-to-go patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , kraxel@redhat.com Hi, This patch series is a split-off from the Spice block device RFC. http://lists.gnu.org/archive/html/qemu-devel/2013-11/msg02024.html It should include only non-controversial or simple patches. The most important change is the NBD client implementation moved to a seperate file. In v2: - should address Paolo comments - added a patch to remove unused CoQueue member Marc-André Lureau (14): coroutine: remove qemu_co_queue_wait_insert_head vscclient: do not add a socket watch if there is not data to send spice-char: remove unused field qmp_change_blockdev() remove unused has_format include: add missing config-host.h include char: add qemu_chr_fe_event() spice-char: implement chardev port event Split nbd block client code nbd: don't change socket block during negotiate nbd: pass export name as init argument nbd: make nbd_client_session_close() idempotent nbd: finish any pending coroutine nbd: avoid uninitialized warnings coroutine: remove unused CoQueue AioContext block/Makefile.objs | 2 +- block/nbd-client.c | 385 ++++++++++++++++++++++++++++++++++++++++++++++ block/nbd-client.h | 50 ++++++ block/nbd.c | 380 ++++----------------------------------------- blockdev.c | 2 +- include/block/coroutine.h | 7 - include/sysemu/blockdev.h | 2 +- include/sysemu/char.h | 10 ++ include/ui/qemu-spice.h | 2 + libcacard/vscclient.c | 10 +- nbd.c | 2 - qemu-char.c | 7 + qemu-coroutine-lock.c | 8 - qmp.c | 2 +- spice-qemu-char.c | 11 +- 15 files changed, 507 insertions(+), 373 deletions(-) create mode 100644 block/nbd-client.c create mode 100644 block/nbd-client.h -- 1.8.4.2