From: Anthony Liguori <anthony@codemonkey.ws>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL 00/39] Block patches
Date: Wed, 20 Jun 2012 08:09:10 -0500 [thread overview]
Message-ID: <4FE1CB76.6090306@codemonkey.ws> (raw)
In-Reply-To: <1339767219-24297-1-git-send-email-kwolf@redhat.com>
On 06/15/2012 08:33 AM, Kevin Wolf wrote:
> The following changes since commit 63bb682a18acc5d2f3219ea96c4d81c1a3b50748:
>
> Merge branch 'master' of git://git.qemu.org/qemu (2012-06-15 15:53:34 +0400)
>
> are available in the git repository at:
>
> git://repo.or.cz/qemu/kevin.git for-anthony
Pulled. Thanks.
Regards,
Anthony Liguori
>
> Josh Durgin (1):
> rbd: hook up cache options
>
> Kevin Wolf (7):
> qemu-img check -r for repairing images
> qemu-img check: Print fixed clusters and recheck
> qcow2: Support for fixing refcount inconsistencies
> qcow2: Simplify calculation for COW area at the end
> qcow2: Fix avail_sectors in cluster allocation code
> qemu-iotests: Some backing file COW tests
> qemu-iotests: COW with many AIO requests on the same cluster
>
> MORITA Kazutaka (1):
> sheepdog: add coroutine_fn markers to coroutine functions
>
> Markus Armbruster (7):
> Un-inline fdctrl_init_isa()
> block: Simplify how drive_init() computes default ID
> block: New bdrv_get_flags()
> scsi-disk: Don't peek behind the BlockDriverState abstraction
> block: Replace bdrv_get_format() by bdrv_get_format_name()
> xen: Don't change -drive if=xen device name during machine init
> xen: Don't peek behind the BlockDriverState abstraction
>
> Max Filippov (1):
> xtensa_lx60: add missing #include "blockdev.h"
>
> Paolo Bonzini (13):
> block: implement is_allocated for raw
> stream: tweak usage of bdrv_co_is_allocated
> stream: move is_allocated_above to block.c
> stream: move rate limiting to a separate header file
> qemu-iotests: fill streaming test image with data
> qemu-iotests: start vms in qtest mode
> block: flush in writethrough mode after writes
> savevm: flush after saving vm state
> block: copy enable_write_cache in bdrv_append
> block: add bdrv_set_enable_write_cache
> block: always open drivers in writeback mode
> ide: support enable/disable write cache
> qcow2: always operate caches in writeback mode
>
> Pavel Dovgaluk (1):
> Prevent disk data loss when closing qemu
>
> Pavel Hrdina (2):
> fdc: fix implied seek while there is no media in drive
> fdc-test: introduced qtest read_without_media
>
> Stefan Hajnoczi (4):
> qemu-img: document qed format on qemu-img man page
> qcow2: fix autoclear image header update
> qemu-iotests: add qcow2.py set-feature-bit command
> qemu-iotests: add 036 autoclear feature bit test
>
> Zhi Yong Wu (2):
> qcow2: remove a line of unnecessary code
> qcow2: fix endianness conversion
>
> block.c | 90 ++++-
> block.h | 17 +-
> block/qcow2-cache.c | 25 +-
> block/qcow2-cluster.c | 16 +-
> block/qcow2-refcount.c | 57 ++-
> block/qcow2.c | 29 +-
> block/qcow2.h | 8 +-
> block/qed-check.c | 2 +
> block/qed.c | 5 +-
> block/raw-posix.c | 98 +++++
> block/raw.c | 8 +
> block/rbd.c | 19 +
> block/sheepdog.c | 9 +-
> block/stream.c | 109 +-----
> block/vdi.c | 7 +-
> block_int.h | 3 +-
> blockdev.c | 7 +-
> hw/fdc.c | 24 ++
> hw/fdc.h | 24 +-
> hw/ide/core.c | 21 +-
> hw/ide/piix.c | 3 +-
> hw/isa.h | 2 -
> hw/pc_sysfw.c | 1 +
> hw/scsi-disk.c | 3 +-
> hw/xen_devconfig.c | 13 +-
> hw/xen_disk.c | 3 +-
> hw/xtensa_lx60.c | 1 +
> include/qemu/ratelimit.h | 48 +++
> os-win32.c | 8 +-
> qemu-common.h | 1 +
> qemu-img-cmds.hx | 4 +-
> qemu-img.c | 40 ++-
> qemu-img.texi | 30 ++-
> savevm.c | 2 +-
> tests/fdc-test.c | 66 +++
> tests/qemu-iotests/030 | 15 +-
> tests/qemu-iotests/036 | 68 +++
> tests/qemu-iotests/036.out | 52 +++
> tests/qemu-iotests/037 | 119 ++++++
> tests/qemu-iotests/037.out | 645 +++++++++++++++++++++++++++++
> tests/qemu-iotests/038 | 133 ++++++
> tests/qemu-iotests/038.out | 909 +++++++++++++++++++++++++++++++++++++++++
> tests/qemu-iotests/group | 3 +
> tests/qemu-iotests/iotests.py | 4 +-
> tests/qemu-iotests/qcow2.py | 23 +
> 45 files changed, 2531 insertions(+), 243 deletions(-)
> create mode 100644 include/qemu/ratelimit.h
> create mode 100755 tests/qemu-iotests/036
> create mode 100644 tests/qemu-iotests/036.out
> create mode 100755 tests/qemu-iotests/037
> create mode 100644 tests/qemu-iotests/037.out
> create mode 100755 tests/qemu-iotests/038
> create mode 100644 tests/qemu-iotests/038.out
>
>
next prev parent reply other threads:[~2012-06-20 13:09 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-15 13:33 [Qemu-devel] [PULL 00/39] Block patches Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 01/39] qcow2: remove a line of unnecessary code Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 02/39] qcow2: fix endianness conversion Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 03/39] block: implement is_allocated for raw Kevin Wolf
2012-06-19 12:37 ` Alexander Graf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 04/39] stream: tweak usage of bdrv_co_is_allocated Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 05/39] stream: move is_allocated_above to block.c Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 06/39] stream: move rate limiting to a separate header file Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 07/39] xtensa_lx60: add missing #include "blockdev.h" Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 08/39] Un-inline fdctrl_init_isa() Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 09/39] qemu-img check -r for repairing images Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 10/39] qemu-img check: Print fixed clusters and recheck Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 11/39] qcow2: Support for fixing refcount inconsistencies Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 12/39] rbd: hook up cache options Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 13/39] sheepdog: add coroutine_fn markers to coroutine functions Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 14/39] block: Simplify how drive_init() computes default ID Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 15/39] Prevent disk data loss when closing qemu Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 16/39] block: New bdrv_get_flags() Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 17/39] scsi-disk: Don't peek behind the BlockDriverState abstraction Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 18/39] qemu-iotests: fill streaming test image with data Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 19/39] qemu-iotests: start vms in qtest mode Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 20/39] block: flush in writethrough mode after writes Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 21/39] savevm: flush after saving vm state Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 22/39] block: copy enable_write_cache in bdrv_append Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 23/39] block: add bdrv_set_enable_write_cache Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 24/39] block: always open drivers in writeback mode Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 25/39] ide: support enable/disable write cache Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 26/39] qcow2: always operate caches in writeback mode Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 27/39] qcow2: Simplify calculation for COW area at the end Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 28/39] qcow2: Fix avail_sectors in cluster allocation code Kevin Wolf
2012-12-12 13:25 ` [Qemu-devel] [BUG] qemu-1.1.2 [FIXED-BY] " Philipp Hahn
2012-12-12 13:41 ` Kevin Wolf
2012-12-12 14:09 ` Philipp Hahn
2012-12-12 16:54 ` Kevin Wolf
2012-12-12 17:29 ` Philipp Hahn
2012-12-14 13:03 ` Philipp Hahn
2012-12-18 9:46 ` Philipp Hahn
2012-12-18 12:12 ` Michael Tokarev
2012-06-15 13:33 ` [Qemu-devel] [PATCH 29/39] qemu-iotests: Some backing file COW tests Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 30/39] qemu-iotests: COW with many AIO requests on the same cluster Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 31/39] qemu-img: document qed format on qemu-img man page Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 32/39] block: Replace bdrv_get_format() by bdrv_get_format_name() Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 33/39] xen: Don't change -drive if=xen device name during machine init Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 34/39] xen: Don't peek behind the BlockDriverState abstraction Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 35/39] qcow2: fix autoclear image header update Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 36/39] fdc: fix implied seek while there is no media in drive Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 37/39] fdc-test: introduced qtest read_without_media Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 38/39] qemu-iotests: add qcow2.py set-feature-bit command Kevin Wolf
2012-06-15 13:33 ` [Qemu-devel] [PATCH 39/39] qemu-iotests: add 036 autoclear feature bit test Kevin Wolf
2012-06-20 13:09 ` Anthony Liguori [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-06-16 11:23 [Qemu-devel] [PULL 00/39] Block patches Stefan Hajnoczi
2014-06-16 13:30 ` Peter Maydell
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=4FE1CB76.6090306@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).