From: Eric Blake <eblake@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, nsoffer@redhat.com, qemu-block@nongnu.org,
mreitz@redhat.com
Subject: [PATCH v4 0/9] qemu-img: Add convert --bitmaps
Date: Tue, 12 May 2020 20:16:39 -0500 [thread overview]
Message-ID: <20200513011648.166876-1-eblake@redhat.com> (raw)
v3 was here:
https://lists.gnu.org/archive/html/qemu-devel/2020-05/msg02139.html
original cover letter here:
https://lists.gnu.org/archive/html/qemu-devel/2020-04/msg03464.html
Since then:
- add R-b where appropriate
- patch 3: rename new driver hook [Max]
- patch 6: typo and grammar fix [Max]
- patch 7: add 'measure --bitmaps' convenience option [Nir]
- patch 7: more documentation, enhance test to cover more cases
- patch 8: rebase to earlier changes, ensure that both 'measure --bitmaps'
and 'convert --bitmaps' pass or fail on the same criteria
001/9:[----] [--] 'docs: Sort sections on qemu-img subcommand parameters'
002/9:[----] [--] 'qemu-img: Fix stale comments on doc location'
003/9:[0017] [FC] 'block: Make it easier to learn which BDS support bitmaps'
004/9:[----] [--] 'blockdev: Promote several bitmap functions to non-static'
005/9:[----] [--] 'blockdev: Split off basic bitmap operations for qemu-img'
006/9:[0009] [FC] 'qemu-img: Add bitmap sub-command'
007/9:[0084] [FC] 'qcow2: Expose bitmaps' size during measure'
008/9:[0008] [FC] 'qemu-img: Add convert --bitmaps option'
009/9:[----] [--] 'iotests: Add test 291 to for qemu-img bitmap coverage'
Series can also be downloaded at:
https://repo.or.cz/qemu/ericb.git/shortlog/refs/tags/qemu-img-bitmaps-v4
Eric Blake (9):
docs: Sort sections on qemu-img subcommand parameters
qemu-img: Fix stale comments on doc location
block: Make it easier to learn which BDS support bitmaps
blockdev: Promote several bitmap functions to non-static
blockdev: Split off basic bitmap operations for qemu-img
qemu-img: Add bitmap sub-command
qcow2: Expose bitmaps' size during measure
qemu-img: Add convert --bitmaps option
iotests: Add test 291 to for qemu-img bitmap coverage
docs/tools/qemu-img.rst | 88 +++++---
Makefile.objs | 3 +-
qapi/block-core.json | 15 +-
block/qcow2.h | 1 +
include/block/block_int.h | 13 ++
include/block/dirty-bitmap.h | 1 +
block/crypto.c | 2 +-
block/dirty-bitmap.c | 9 +
block/monitor/bitmap-qmp-cmds.c | 323 +++++++++++++++++++++++++++
block/qcow2-bitmap.c | 7 +
block/qcow2.c | 39 +++-
block/raw-format.c | 2 +-
blockdev.c | 303 +------------------------
qemu-img.c | 366 ++++++++++++++++++++++++++++++-
MAINTAINERS | 1 +
block/monitor/Makefile.objs | 1 +
qemu-img-cmds.hx | 17 +-
tests/qemu-iotests/178.out.qcow2 | 16 ++
tests/qemu-iotests/190 | 57 ++++-
tests/qemu-iotests/190.out | 35 ++-
tests/qemu-iotests/291 | 112 ++++++++++
tests/qemu-iotests/291.out | 78 +++++++
tests/qemu-iotests/group | 1 +
23 files changed, 1142 insertions(+), 348 deletions(-)
create mode 100644 block/monitor/bitmap-qmp-cmds.c
create mode 100755 tests/qemu-iotests/291
create mode 100644 tests/qemu-iotests/291.out
--
2.26.2
next reply other threads:[~2020-05-13 1:18 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-13 1:16 Eric Blake [this message]
2020-05-13 1:16 ` [PATCH v4 1/9] docs: Sort sections on qemu-img subcommand parameters Eric Blake
2020-05-14 5:02 ` Vladimir Sementsov-Ogievskiy
2020-05-13 1:16 ` [PATCH v4 2/9] qemu-img: Fix stale comments on doc location Eric Blake
2020-05-14 5:06 ` Vladimir Sementsov-Ogievskiy
2020-05-13 1:16 ` [PATCH v4 3/9] block: Make it easier to learn which BDS support bitmaps Eric Blake
2020-05-14 5:19 ` Vladimir Sementsov-Ogievskiy
2020-05-14 14:09 ` Eric Blake
2020-05-13 1:16 ` [PATCH v4 4/9] blockdev: Promote several bitmap functions to non-static Eric Blake
2020-05-14 5:45 ` Vladimir Sementsov-Ogievskiy
2020-05-14 11:45 ` Vladimir Sementsov-Ogievskiy
2020-05-14 14:10 ` Eric Blake
2020-05-13 1:16 ` [PATCH v4 5/9] blockdev: Split off basic bitmap operations for qemu-img Eric Blake
2020-05-14 6:21 ` Vladimir Sementsov-Ogievskiy
2020-05-14 14:15 ` Eric Blake
2020-05-13 1:16 ` [PATCH v4 6/9] qemu-img: Add bitmap sub-command Eric Blake
2020-05-14 6:45 ` Vladimir Sementsov-Ogievskiy
2020-05-14 14:20 ` Eric Blake
2020-05-14 15:09 ` Vladimir Sementsov-Ogievskiy
2020-05-18 11:42 ` Vladimir Sementsov-Ogievskiy
2020-05-18 19:07 ` Eric Blake
2020-05-18 19:38 ` Vladimir Sementsov-Ogievskiy
2020-05-13 1:16 ` [PATCH v4 7/9] qcow2: Expose bitmaps' size during measure Eric Blake
2020-05-18 13:07 ` Vladimir Sementsov-Ogievskiy
2020-05-18 19:17 ` Eric Blake
2020-05-18 19:47 ` Vladimir Sementsov-Ogievskiy
2020-05-13 1:16 ` [PATCH v4 8/9] qemu-img: Add convert --bitmaps option Eric Blake
2020-05-18 13:33 ` Vladimir Sementsov-Ogievskiy
2020-05-13 1:16 ` [PATCH v4 9/9] iotests: Add test 291 to for qemu-img bitmap coverage Eric Blake
2020-05-18 14:43 ` Vladimir Sementsov-Ogievskiy
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=20200513011648.166876-1-eblake@redhat.com \
--to=eblake@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=nsoffer@redhat.com \
--cc=qemu-block@nongnu.org \
--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).