From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34143) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGeWO-00019S-Kp for qemu-devel@nongnu.org; Tue, 25 Sep 2012 19:26:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TGeWN-0000zN-FZ for qemu-devel@nongnu.org; Tue, 25 Sep 2012 19:26:32 -0400 Received: from mail-ob0-f173.google.com ([209.85.214.173]:60888) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGeWN-0000zF-AD for qemu-devel@nongnu.org; Tue, 25 Sep 2012 19:26:31 -0400 Received: by obbta14 with SMTP id ta14so6756483obb.4 for ; Tue, 25 Sep 2012 16:26:30 -0700 (PDT) From: Anthony Liguori In-Reply-To: <1348496808-8159-1-git-send-email-kwolf@redhat.com> References: <1348496808-8159-1-git-send-email-kwolf@redhat.com> Date: Tue, 25 Sep 2012 18:26:26 -0500 Message-ID: <87haqlsmzh.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PULL 00/19] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org Kevin Wolf writes: > The following changes since commit d3e8f95753114a827f9cd8e819b1d5cc8333f76b: > > w32: Add implementation of gmtime_r, localtime_r (2012-09-23 17:09:30 +0000) > > are available in the git repository at: > > git://repo.or.cz/qemu/kevin.git for-anthony Pulled. Thanks. Regards, Anthony Liguori > > Jeff Cody (18): > block: correctly set the keep_read_only flag > block: make bdrv_set_enable_write_cache() modify open_flags > block: Framework for reopening files safely > block: move aio initialization into a helper function > block: move open flag parsing in raw block drivers to helper functions > block: do not parse BDRV_O_CACHE_WB in block drivers > block: use BDRV_O_NOCACHE instead of s->aligned_buf in raw-posix.c > block: purge s->aligned_buf and s->aligned_buf_size from raw-posix.c > block: raw-posix image file reopen > block: raw image file reopen > block: qed image file reopen > block: qcow2 image file reopen > block: qcow image file reopen > block: vmdk image file reopen > block: vdi image file reopen > block: vpc image file reopen > block: convert bdrv_commit() to use bdrv_reopen() > block: remove keep_read_only flag from BlockDriverState struct > > Kevin Shanahan (1): > blockdev: preserve readonly and snapshot states across media changes > > block.c | 299 ++++++++++++++++++++++++++++++++++++++++++++--------- > block.h | 18 +++ > block/iscsi.c | 4 - > block/qcow.c | 10 ++ > block/qcow2.c | 10 ++ > block/qed.c | 9 ++ > block/raw-posix.c | 225 ++++++++++++++++++++++++++++++---------- > block/raw-win32.c | 40 ++++---- > block/raw.c | 10 ++ > block/rbd.c | 6 - > block/sheepdog.c | 14 +-- > block/vdi.c | 7 ++ > block/vmdk.c | 35 ++++++ > block/vpc.c | 7 ++ > block_int.h | 9 ++- > blockdev.c | 2 + > 16 files changed, 563 insertions(+), 142 deletions(-)