[Qemu-devel] [PATCH v2 0/5] more blkdebug tweaks

Eric Blake posted 5 patches 6 years, 10 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170524202842.26724-1-eblake@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
There is a newer version of this series
block/blkdebug.c           | 11 +++++++++++
block/commit.c             |  2 +-
block/io.c                 | 20 ++++++++++++--------
block/mirror.c             |  5 ++---
block/qcow2.c              |  4 +---
block/raw-format.c         |  2 +-
block/vpc.c                |  2 +-
qemu-img.c                 | 10 ++++------
qemu-io.c                  |  7 ++++---
tests/qemu-iotests/177     |  3 +++
tests/qemu-iotests/177.out |  5 +++++
11 files changed, 45 insertions(+), 26 deletions(-)
[Qemu-devel] [PATCH v2 0/5] more blkdebug tweaks
Posted by Eric Blake 6 years, 10 months ago
I found a crasher and some odd behavior while rebasing my
bdrv_get_block_status series, so I figured I'd get these things
fixed first.  This is based on top of Max's block branch.

Since v1:
- patch 1: patch open_f instead of openfile [Fam]
- patch 2: drop redundant assignment
- patch 3: new
- patch 4, 5: tweak commit message

(no diff from v1, since I forgot to tag that one)

Available as a tag at:
git fetch git://repo.or.cz/qemu/ericb.git nbd-blkdebug-status-v2

Eric Blake (5):
  qemu-io: Don't die on second open
  block: Guarantee that *file is set on bdrv_get_block_status()
  block: Allow NULL file for bdrv_get_block_status()
  block: Simplify use of BDRV_BLOCK_RAW
  blkdebug: Support .bdrv_co_get_block_status

 block/blkdebug.c           | 11 +++++++++++
 block/commit.c             |  2 +-
 block/io.c                 | 20 ++++++++++++--------
 block/mirror.c             |  5 ++---
 block/qcow2.c              |  4 +---
 block/raw-format.c         |  2 +-
 block/vpc.c                |  2 +-
 qemu-img.c                 | 10 ++++------
 qemu-io.c                  |  7 ++++---
 tests/qemu-iotests/177     |  3 +++
 tests/qemu-iotests/177.out |  5 +++++
 11 files changed, 45 insertions(+), 26 deletions(-)

-- 
2.9.4


Re: [Qemu-devel] [PATCH v2 0/5] more blkdebug tweaks
Posted by Fam Zheng 6 years, 10 months ago
On Wed, 05/24 15:28, Eric Blake wrote:
> I found a crasher and some odd behavior while rebasing my
> bdrv_get_block_status series, so I figured I'd get these things
> fixed first.  This is based on top of Max's block branch.

For patches 1,2,4,5: Acked-by: Fam Zheng <famz@redhat.com>