From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56058) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TqU6P-00088o-GF for qemu-devel@nongnu.org; Wed, 02 Jan 2013 14:35:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TqU6N-0002Q5-Rh for qemu-devel@nongnu.org; Wed, 02 Jan 2013 14:35:49 -0500 Received: from e8.ny.us.ibm.com ([32.97.182.138]:50802) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TqU6N-0002Q1-N5 for qemu-devel@nongnu.org; Wed, 02 Jan 2013 14:35:47 -0500 Received: from /spool/local by e8.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 2 Jan 2013 14:35:47 -0500 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id 8A9A4C9003C for ; Wed, 2 Jan 2013 14:35:45 -0500 (EST) Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [9.17.195.170]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r02JZh0Q317736 for ; Wed, 2 Jan 2013 14:35:44 -0500 Received: from d03av04.boulder.ibm.com (loopback [127.0.0.1]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r02JZe0x026306 for ; Wed, 2 Jan 2013 12:35:40 -0700 From: Anthony Liguori In-Reply-To: <1357139756-11951-1-git-send-email-stefanha@redhat.com> References: <1357139756-11951-1-git-send-email-stefanha@redhat.com> Date: Wed, 02 Jan 2013 13:35:29 -0600 Message-ID: <87zk0rtm2m.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PULL v2 00/18] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi , qemu-devel@nongnu.org Stefan Hajnoczi writes: > Paolo's include/ reorganization was merged and this pull request had conflicts. > Resolved in v2. > > The following changes since commit 5928023cef87847a295035487397b9ec701fdd6b: > > pflash_cfi01: Suppress warning when Linux probes for AMD flash (2013-01-01 13:05:57 +0100) > > are available in the git repository at: > > git://github.com/stefanha/qemu.git block > Pulled. Thanks. Regards, Anthony Liguori > for you to fetch changes up to d6b1ef89a1ede41334e4d0fa27e600e0b4d4f209: > > sheepdog: pass oid directly to send_pending_req() (2013-01-02 16:09:00 +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/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 | 62 ++++++ > hw/virtio-blk.c | 53 +++++- > hw/virtio-blk.h | 5 +- > hw/virtio-pci.c | 4 + > include/block/block.h | 9 + > include/qemu-common.h | 3 + > include/qemu/iov.h | 13 ++ > iov.c | 90 +++++++-- > qemu-img.c | 10 +- > tests/test-iov.c | 150 +++++++++++++++ > trace-events | 9 + > 27 files changed, 1863 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 > > -- > 1.8.0.2