| Submitter | Stefan Hajnoczi |
|---|---|
| Date | Dec. 19, 2012, 3:38 p.m. |
| Message ID | <1355931499-7912-1-git-send-email-stefanha@redhat.com> |
| Download | mbox |
| Permalink | /patch/207407/ |
| State | New |
| Headers | show
Return-Path: <qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org> X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 515472C009B for <incoming@patchwork.ozlabs.org>; Thu, 20 Dec 2012 02:38:38 +1100 (EST) Received: from localhost ([::1]:33775 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>) id 1TlLjA-0003ld-GD for incoming@patchwork.ozlabs.org; Wed, 19 Dec 2012 10:38:36 -0500 Received: from eggs.gnu.org ([208.118.235.92]:60372) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <stefanha@redhat.com>) id 1TlLj0-0003ho-GU for qemu-devel@nongnu.org; Wed, 19 Dec 2012 10:38:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <stefanha@redhat.com>) id 1TlLix-0002CI-Rg for qemu-devel@nongnu.org; Wed, 19 Dec 2012 10:38:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:50183) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <stefanha@redhat.com>) id 1TlLix-0002Bw-L0 for qemu-devel@nongnu.org; Wed, 19 Dec 2012 10:38:23 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBJFcLi0004834 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 19 Dec 2012 10:38:22 -0500 Received: from localhost (ovpn-112-31.ams2.redhat.com [10.36.112.31]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qBJFcKGK030669; Wed, 19 Dec 2012 10:38:21 -0500 From: Stefan Hajnoczi <stefanha@redhat.com> To: <qemu-devel@nongnu.org> Date: Wed, 19 Dec 2012 16:38:01 +0100 Message-Id: <1355931499-7912-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Anthony Liguori <aliguori@us.ibm.com> Subject: [Qemu-devel] [PULL 00/18] Block patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: <qemu-devel.nongnu.org> List-Unsubscribe: <https://lists.nongnu.org/mailman/options/qemu-devel>, <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe> List-Archive: <http://lists.nongnu.org/archive/html/qemu-devel> List-Post: <mailto:qemu-devel@nongnu.org> List-Help: <mailto:qemu-devel-request@nongnu.org?subject=help> List-Subscribe: <https://lists.nongnu.org/mailman/listinfo/qemu-devel>, <mailto:qemu-devel-request@nongnu.org?subject=subscribe> Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org |
One last block pull request before the end of the world on 21 December. Kevin is on vacation until 2nd week of January. I am away until January 2 starting from tomorrow. If there is anything urgent, don't hesitate to email stefanha@gmail.com. The following changes since commit 914606d26e654d4c01bd5186f4d05e3fd445e219: Merge remote-tracking branch 'stefanha/trivial-patches' into staging (2012-12-18 15:41:43 -0600) are available in the git repository at: git://github.com/stefanha/qemu.git block for you to fetch changes up to 1dc5e4dc3eefcc3f8d8e5af0da8316ab5dd283bd: sheepdog: pass oid directly to send_pending_req() (2012-12-19 16:33:57 +0100) ---------------------------------------------------------------- Alexey Zaytsev (1): virtio-blk: Return UNSUPP for unknown request types Liu Yuan (2): sheepdog: don't update inode when create_and_write fails sheepdog: pass oid directly to send_pending_req() Stefan Hajnoczi (12): raw-posix: add raw_get_aio_fd() for virtio-blk-data-plane configure: add CONFIG_VIRTIO_BLK_DATA_PLANE dataplane: add host memory mapping code dataplane: add virtqueue vring code dataplane: add event loop dataplane: add Linux AIO request queue iov: add iov_discard_front/back() to remove data test-iov: add iov_discard_front/back() testcases iov: add qemu_iovec_concat_iov() virtio-blk: restore VirtIOBlkConf->config_wce flag dataplane: add virtio-blk data plane code virtio-blk: add x-data-plane=on|off performance feature Stefan Weil (1): block/raw-win32: Fix compiler warnings (wrong format specifiers) liguang (2): cutils: change strtosz_suffix_unit function qemu-img: report size overflow error message block.h | 9 + block/raw-posix.c | 34 ++++ block/raw-win32.c | 4 +- block/sheepdog.c | 11 +- configure | 21 ++ cutils.c | 6 +- hw/Makefile.objs | 2 +- hw/dataplane/Makefile.objs | 3 + hw/dataplane/event-poll.c | 100 ++++++++++ hw/dataplane/event-poll.h | 40 ++++ hw/dataplane/hostmem.c | 176 +++++++++++++++++ hw/dataplane/hostmem.h | 57 ++++++ hw/dataplane/ioq.c | 117 ++++++++++++ hw/dataplane/ioq.h | 57 ++++++ hw/dataplane/virtio-blk.c | 465 +++++++++++++++++++++++++++++++++++++++++++++ hw/dataplane/virtio-blk.h | 29 +++ hw/dataplane/vring.c | 362 +++++++++++++++++++++++++++++++++++ hw/dataplane/vring.h | 63 ++++++ hw/virtio-blk.c | 53 +++++- hw/virtio-blk.h | 5 +- hw/virtio-pci.c | 4 + iov.c | 90 +++++++-- iov.h | 13 ++ qemu-common.h | 3 + qemu-img.c | 10 +- tests/test-iov.c | 150 +++++++++++++++ trace-events | 9 + 27 files changed, 1864 insertions(+), 29 deletions(-) create mode 100644 hw/dataplane/Makefile.objs create mode 100644 hw/dataplane/event-poll.c create mode 100644 hw/dataplane/event-poll.h create mode 100644 hw/dataplane/hostmem.c create mode 100644 hw/dataplane/hostmem.h create mode 100644 hw/dataplane/ioq.c create mode 100644 hw/dataplane/ioq.h create mode 100644 hw/dataplane/virtio-blk.c create mode 100644 hw/dataplane/virtio-blk.h create mode 100644 hw/dataplane/vring.c create mode 100644 hw/dataplane/vring.h