From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47024) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBPVv-00027f-0c for qemu-devel@nongnu.org; Mon, 19 Aug 2013 09:29:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VBPVp-0007KT-JP for qemu-devel@nongnu.org; Mon, 19 Aug 2013 09:28:54 -0400 Received: from mail-wg0-x22f.google.com ([2a00:1450:400c:c00::22f]:59618) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBPVp-0007KL-D6 for qemu-devel@nongnu.org; Mon, 19 Aug 2013 09:28:49 -0400 Received: by mail-wg0-f47.google.com with SMTP id j13so3444928wgh.26 for ; Mon, 19 Aug 2013 06:28:48 -0700 (PDT) Date: Mon, 19 Aug 2013 15:28:46 +0200 From: Stefan Hajnoczi Message-ID: <20130819132846.GB6111@stefanha-thinkpad.redhat.com> References: <1376668044-25116-1-git-send-email-stefanha@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1376668044-25116-1-git-send-email-stefanha@redhat.com> Subject: Re: [Qemu-devel] [PULL 00/18] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: Anthony Liguori , qemu-devel@nongnu.org On Fri, Aug 16, 2013 at 05:47:06PM +0200, Stefan Hajnoczi wrote: > fatal: Needed a single revision > The following changes since commit f202039811d8746b0586d2fd5f61de6c8cf68056: > > Open up 1.7 development branch (2013-08-15 15:41:13 -0500) > > are available in the git repository at: > > git://github.com/stefanha/qemu.git block-next > > for you to fetch changes up to ab97be151813b6823fa41e46f62c500f5b03f771: > > aio: drop io_flush argument (2013-08-16 14:16:21 +0200) > > ---------------------------------------------------------------- > Stefan Hajnoczi (18): > block: ensure bdrv_drain_all() works during bdrv_delete() > block: stop relying on io_flush() in bdrv_drain_all() > dataplane/virtio-blk: check exit conditions before aio_poll() > tests: adjust test-aio to new aio_poll() semantics > tests: adjust test-thread-pool to new aio_poll() semantics > aio: stop using .io_flush() > block/curl: drop curl_aio_flush() > block/gluster: drop qemu_gluster_aio_flush_cb() > block/iscsi: drop iscsi_process_flush() > block/linux-aio: drop qemu_laio_completion_cb() > block/nbd: drop nbd_have_request() > block/rbd: drop qemu_rbd_aio_flush_cb() > block/sheepdog: drop have_co_req() and aio_flush_request() > block/ssh: drop return_true() > dataplane/virtio-blk: drop flush_true() and flush_io() > thread-pool: drop thread_pool_active() > tests: drop event_active_cb() > aio: drop io_flush argument > > aio-posix.c | 36 ++++++------------ > aio-win32.c | 37 ++++++++----------- > async.c | 4 +- > block.c | 49 ++++++++++++++++++------ > block/curl.c | 25 ++----------- > block/gluster.c | 21 ++--------- > block/iscsi.c | 10 +---- > block/linux-aio.c | 18 +-------- > block/nbd.c | 18 ++------- > block/rbd.c | 16 +------- > block/sheepdog.c | 33 ++++------------- > block/ssh.c | 12 +----- > block/stream.c | 6 ++- > hw/block/dataplane/virtio-blk.c | 25 +++---------- > include/block/aio.h | 14 +------ > main-loop.c | 9 ++--- > tests/test-aio.c | 82 +++++++++++++++++++++-------------------- > tests/test-thread-pool.c | 24 ++++++------ > thread-pool.c | 11 +----- > 19 files changed, 163 insertions(+), 287 deletions(-) Bharata found an issue with the GlusterFS patch, I will resend with the fix squashed in. Stefan