From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoH97-0004ks-7t for qemu-devel@nongnu.org; Mon, 09 Jul 2012 12:49:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoH95-0004WW-9t for qemu-devel@nongnu.org; Mon, 09 Jul 2012 12:49:12 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:57503) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoH95-0004Sc-47 for qemu-devel@nongnu.org; Mon, 09 Jul 2012 12:49:11 -0400 Received: by mail-pb0-f45.google.com with SMTP id ro12so21064905pbb.4 for ; Mon, 09 Jul 2012 09:49:10 -0700 (PDT) Message-ID: <4FFB0B83.1060106@codemonkey.ws> Date: Mon, 09 Jul 2012 11:49:07 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1341843388-5663-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1341843388-5663-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/25] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 07/09/2012 09:16 AM, Kevin Wolf wrote: > The following changes since commit 84988cf910a6881f2180fdcec516b60f8f0dc8c4: > > bitops.h: Add functions to extract and deposit bitfields (2012-07-07 09:07:01 +0000) > > are available in the git repository at: > > git://repo.or.cz/qemu/kevin.git for-anthony Pulled updated versiong. Thanks. Regards, Anthony Liguori > > MORITA Kazutaka (6): > sheepdog: fix dprintf format strings > sheepdog: restart I/O when socket becomes ready in do_co_req() > sheepdog: use coroutine based socket functions in coroutine context > sheepdog: make sure we don't free aiocb before sending all requests > sheepdog: split outstanding list into inflight and pending > sheepdog: traverse pending_list from the first for each time > > Markus Armbruster (4): > fdc: Drop broken code for user-defined floppy geometry > fdc: Move floppy geometry guessing back from block.c > qtest: Tidy up temporary files properly > block: Factor bdrv_read_unthrottled() out of guess_disk_lchs() > > Paolo Bonzini (8): > blkdebug: remove sync i/o events > blkdebug: tiny cleanup > blkdebug: pass getlength to underlying file > blkdebug: store list of active rules > blkdebug: optionally tie errors to a specific sector > raw: hook into blkdebug > block: copy over job and dirty bitmap fields in bdrv_append > block: introduce bdrv_swap, implement bdrv_append on top of it > > Pavel Hrdina (4): > fdc: rewrite seek and DSKCHG bit handling > fdc: fix interrupt handling > fdc_test: update media_change test > fdc_test: introduce test_sense_interrupt > > Stefan Hajnoczi (3): > qcow2: fix #ifdef'd qcow2_check_refcounts() callers > qcow2: preserve free_byte_offset when qcow2_alloc_bytes() fails > blockdev: warn when copy_on_read=on and readonly=on > > block.c | 306 +++++++++++++++++++----------------------------- > block.h | 23 +--- > block/blkdebug.c | 107 ++++++++++------- > block/qcow2-refcount.c | 7 +- > block/qcow2-snapshot.c | 6 +- > block/qcow2.c | 2 +- > block/qed.c | 2 +- > block/raw.c | 2 + > block/sheepdog.c | 130 +++++++++++++-------- > blockdev.c | 4 + > hw/fdc.c | 238 +++++++++++++++++++++++++++---------- > hw/fdc.h | 10 ++- > hw/pc.c | 13 +-- > tests/fdc-test.c | 50 +++++++-- > tests/libqtest.c | 29 +++-- > 15 files changed, 522 insertions(+), 407 deletions(-) > >