From: Anthony Liguori <aliguori@linux.vnet.ibm.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] Re: [PULL 00/18] Block patches
Date: Mon, 03 May 2010 08:01:21 -0500 [thread overview]
Message-ID: <4BDEC921.7050209@linux.vnet.ibm.com> (raw)
In-Reply-To: <1272636040-17374-1-git-send-email-kwolf@redhat.com>
On 04/30/2010 09:00 AM, Kevin Wolf wrote:
> Hi Anthony,
>
> this is the second part of the block patches in my queue that I promised in the
> pull request last week. I also included the high watermark patch even if it
> didn't sit on the list for a very long time - but the people that I expected to
> comment on it have already done so, either on the list or internally.
>
> Kevin
>
> The following changes since commit 9ed7b059ef776a3921cfd085e891f45076922542:
> Amit Shah (1):
> virtio-serial: Implement flow control for individual ports
>
> are available in the git repository at:
>
> git://repo.or.cz/qemu/kevin.git for-anthony
>
Pulled. Thanks.
Regards,
Anthony Liguori
> Christoph Hellwig (1):
> block: separate raw images from the file protocol
>
> Jan Kiszka (1):
> block: Release allocated options after bdrv_open
>
> Kevin Wolf (10):
> block: Split bdrv_open
> block: Avoid forward declaration of bdrv_open_common
> block: Open the underlying image file in generic code
> block: bdrv_has_zero_init
> vmdk: Fix COW
> vmdk: Clean up backing file handling
> vmdk: Convert to bdrv_open
> qcow2: Remove abort on free_clusters failure
> block: Add wr_highest_sector blockstat
> qemu-img rebase: Fix output image corruption
>
> Stefan Hajnoczi (6):
> block: Set backing_hd to NULL after deleting it
> qcow2: Avoid shadowing variable in alloc_clusters_noref()
> raw-posix: Use pread/pwrite instead of lseek+read/write
> block: Cache total_sectors to reduce bdrv_getlength calls
> qemu-img: Add 'resize' command to grow/shrink disk images
> qcow2: Implement bdrv_truncate() for growing images
>
> Makefile.objs | 2 +-
> block.c | 384 ++++++++++++++++++++++++++++++++++--------------
> block.h | 2 +
> block/blkdebug.c | 17 +--
> block/bochs.c | 2 +-
> block/cloop.c | 2 +-
> block/cow.c | 2 +-
> block/curl.c | 10 +-
> block/dmg.c | 2 +-
> block/nbd.c | 2 +-
> block/parallels.c | 2 +-
> block/qcow.c | 67 ++++-----
> block/qcow2-cluster.c | 64 ++++----
> block/qcow2-refcount.c | 86 ++++++------
> block/qcow2-snapshot.c | 22 ++--
> block/qcow2.c | 110 +++++++++-----
> block/qcow2.h | 8 +-
> block/raw-posix.c | 62 +++------
> block/raw-win32.c | 16 +-
> block/raw.c | 144 ++++++++++++++++++
> block/vdi.c | 29 +---
> block/vmdk.c | 140 +++++-------------
> block/vpc.c | 32 ++---
> block/vvfat.c | 2 +-
> block_int.h | 6 +-
> qemu-img-cmds.hx | 6 +
> qemu-img.c | 104 +++++++++++++-
> qemu-img.texi | 12 ++
> 28 files changed, 843 insertions(+), 494 deletions(-)
> create mode 100644 block/raw.c
>
prev parent reply other threads:[~2010-05-03 13:01 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-30 14:00 [Qemu-devel] [PULL 00/18] Block patches Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 01/18] block: separate raw images from the file protocol Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 02/18] block: Split bdrv_open Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 03/18] block: Avoid forward declaration of bdrv_open_common Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 04/18] block: Open the underlying image file in generic code Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 05/18] block: bdrv_has_zero_init Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 06/18] vmdk: Fix COW Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 07/18] vmdk: Clean up backing file handling Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 08/18] vmdk: Convert to bdrv_open Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 09/18] block: Set backing_hd to NULL after deleting it Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 10/18] qcow2: Avoid shadowing variable in alloc_clusters_noref() Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 11/18] raw-posix: Use pread/pwrite instead of lseek+read/write Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 12/18] block: Cache total_sectors to reduce bdrv_getlength calls Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 13/18] qemu-img: Add 'resize' command to grow/shrink disk images Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 14/18] qcow2: Remove abort on free_clusters failure Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 15/18] qcow2: Implement bdrv_truncate() for growing images Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 16/18] block: Add wr_highest_sector blockstat Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 17/18] qemu-img rebase: Fix output image corruption Kevin Wolf
2010-04-30 14:00 ` [Qemu-devel] [PATCH 18/18] block: Release allocated options after bdrv_open Kevin Wolf
2010-05-03 13:01 ` Anthony Liguori [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4BDEC921.7050209@linux.vnet.ibm.com \
--to=aliguori@linux.vnet.ibm.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).