From: Anthony Liguori <anthony@codemonkey.ws>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] Re: [PULL 00/28] Block patches
Date: Mon, 31 Jan 2011 12:01:45 -0600 [thread overview]
Message-ID: <4D46F909.1090901@codemonkey.ws> (raw)
In-Reply-To: <1296487756-12553-1-git-send-email-kwolf@redhat.com>
On 01/31/2011 09:28 AM, Kevin Wolf wrote:
> The following changes since commit 45d1aa828f8c94b082a0aa2dbf76535594ee45df:
>
> Update OpenBIOS images to r1018 (2011-01-30 13:10:10 +0000)
>
> are available in the git repository at:
> git://repo.or.cz/qemu/kevin.git block
>
Pulled. Thanks.
Regards,
Anthony Liguori
> Blue Swirl (1):
> qcow2-refcount: remove write-only variables
>
> Christoph Hellwig (3):
> block: add block_resize monitor command
> block: tell drivers about an image resize
> virtio-blk: tell the guest about size changes
>
> Jes Sorensen (6):
> strtosz(): use unsigned char and switch to qemu_isspace()
> strtosz() use qemu_toupper() to simplify switch statement
> strtosz(): Fix name confusion in use of modf()
> strtosz(): Use suffix macros in switch() statement
> Add documentation for STRTOSZ_DEFSUFFIX_ macros
> Reorganize struct Qcow2Cache for better struct packing
>
> Kevin Wolf (3):
> qemu-io: Fix discard command
> qcow2: Add bdrv_discard support
> raw-win32: Fix bdrv_flush return value
>
> MORITA Kazutaka (1):
> sheepdog: support creating images on remote hosts
>
> Markus Armbruster (11):
> scsi hotplug: Set DriveInfo member bus correctly
> blockdev: New drive_get_next(), replacing qdev_init_bdrv()
> blockdev: Move BlockInterfaceType from qemu-common.h to blockdev.h
> blockdev: Put BlockInterfaceType names and max_devs in tables
> blockdev: Fix regression in -drive if=scsi,index=N
> blockdev: Make drive_add() take explicit type, index parameters
> blockdev: Factor drive_index_to_{bus,unit}_id out of drive_init()
> blockdev: New drive_get_by_index()
> blockdev: Reject multiple definitions for the same drive
> blockdev: Replace drive_add()'s fmt, ... by optstr parameter
> blockdev: Fix drive_add for drives without media
>
> Stefan Hajnoczi (3):
> virtio-pci: Disable virtio-ioeventfd when !CONFIG_IOTHREAD
> ahci: Fix cpu_physical_memory_unmap() argument ordering
> qed: Images with backing file do not require QED_F_NEED_CHECK
>
> block.c | 12 ++-
> block.h | 3 +-
> block/qcow2-cache.c | 2 +-
> block/qcow2-cluster.c | 82 +++++++++++++++++++++++
> block/qcow2-refcount.c | 5 +-
> block/qcow2.c | 8 ++
> block/qcow2.h | 2 +
> block/qed.c | 24 +++++--
> block/raw-win32.c | 2 +-
> block/sheepdog.c | 17 ++++-
> block_int.h | 5 +-
> blockdev.c | 173 ++++++++++++++++++++++++++++++++---------------
> blockdev.h | 19 ++++--
> cutils.c | 28 ++++-----
> hmp-commands.hx | 19 +++++
> hw/device-hotplug.c | 5 +-
> hw/ide.h | 2 +
> hw/ide/ahci.c | 11 ++--
> hw/ide/core.c | 6 ++-
> hw/pci-hotplug.c | 1 +
> hw/pl181.c | 7 +-
> hw/qdev.c | 15 ----
> hw/qdev.h | 2 -
> hw/scsi.h | 3 +-
> hw/sd.c | 7 ++-
> hw/ssi-sd.c | 7 +-
> hw/usb-msd.c | 3 +-
> hw/virtio-blk.c | 10 +++
> kvm-all.c | 8 ++-
> qemu-common.h | 13 ++--
> qemu-io.c | 2 +-
> qmp-commands.hx | 28 ++++++++
> savevm.c | 1 -
> vl.c | 104 +++++++++++++++++------------
> 34 files changed, 447 insertions(+), 189 deletions(-)
>
prev parent reply other threads:[~2011-01-31 18:03 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-31 15:28 [Qemu-devel] [PULL 00/28] Block patches Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 01/28] strtosz(): use unsigned char and switch to qemu_isspace() Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 02/28] strtosz() use qemu_toupper() to simplify switch statement Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 03/28] strtosz(): Fix name confusion in use of modf() Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 04/28] strtosz(): Use suffix macros in switch() statement Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 05/28] block: add block_resize monitor command Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 06/28] block: tell drivers about an image resize Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 07/28] virtio-blk: tell the guest about size changes Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 08/28] virtio-pci: Disable virtio-ioeventfd when !CONFIG_IOTHREAD Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 09/28] Add documentation for STRTOSZ_DEFSUFFIX_ macros Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 10/28] ahci: Fix cpu_physical_memory_unmap() argument ordering Kevin Wolf
2011-01-31 15:28 ` [Qemu-devel] [PATCH 11/28] Reorganize struct Qcow2Cache for better struct packing Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 12/28] sheepdog: support creating images on remote hosts Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 13/28] qemu-io: Fix discard command Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 14/28] qcow2: Add bdrv_discard support Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 15/28] qed: Images with backing file do not require QED_F_NEED_CHECK Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 16/28] raw-win32: Fix bdrv_flush return value Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 17/28] scsi hotplug: Set DriveInfo member bus correctly Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 18/28] qcow2-refcount: remove write-only variables Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 19/28] blockdev: New drive_get_next(), replacing qdev_init_bdrv() Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 20/28] blockdev: Move BlockInterfaceType from qemu-common.h to blockdev.h Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 21/28] blockdev: Put BlockInterfaceType names and max_devs in tables Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 22/28] blockdev: Fix regression in -drive if=scsi, index=N Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 23/28] blockdev: Make drive_add() take explicit type, index parameters Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 24/28] blockdev: Factor drive_index_to_{bus, unit}_id out of drive_init() Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 25/28] blockdev: New drive_get_by_index() Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 26/28] blockdev: Reject multiple definitions for the same drive Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 27/28] blockdev: Replace drive_add()'s fmt, ... by optstr parameter Kevin Wolf
2011-01-31 15:29 ` [Qemu-devel] [PATCH 28/28] blockdev: Fix drive_add for drives without media Kevin Wolf
2011-01-31 18: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=4D46F909.1090901@codemonkey.ws \
--to=anthony@codemonkey.ws \
--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).