All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Snow <jsnow@redhat.com>
To: qemu-block@nongnu.org
Cc: vsementsov@virtuozzo.com, famz@redhat.com, qemu-devel@nongnu.org,
	mreitz@redhat.com, John Snow <jsnow@redhat.com>
Subject: [Qemu-devel] [PATCH v7 05/10] block: Add two dirty bitmap getters
Date: Mon, 18 Jul 2016 16:57:06 -0400	[thread overview]
Message-ID: <1468875431-16646-6-git-send-email-jsnow@redhat.com> (raw)
In-Reply-To: <1468875431-16646-1-git-send-email-jsnow@redhat.com>

From: Fam Zheng <famz@redhat.com>

For dirty bitmap users to get the size and the name of a
BdrvDirtyBitmap.

Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
---
 block/dirty-bitmap.c         | 10 ++++++++++
 include/block/dirty-bitmap.h |  2 ++
 2 files changed, 12 insertions(+)

diff --git a/block/dirty-bitmap.c b/block/dirty-bitmap.c
index 970677c..f161dce 100644
--- a/block/dirty-bitmap.c
+++ b/block/dirty-bitmap.c
@@ -154,6 +154,16 @@ void bdrv_dirty_bitmap_reset_meta(BlockDriverState *bs,
     hbitmap_reset(bitmap->meta, sector, nb_sectors);
 }
 
+int64_t bdrv_dirty_bitmap_size(const BdrvDirtyBitmap *bitmap)
+{
+    return bitmap->size;
+}
+
+const char *bdrv_dirty_bitmap_name(const BdrvDirtyBitmap *bitmap)
+{
+    return bitmap->name;
+}
+
 bool bdrv_dirty_bitmap_frozen(BdrvDirtyBitmap *bitmap)
 {
     return bitmap->successor;
diff --git a/include/block/dirty-bitmap.h b/include/block/dirty-bitmap.h
index 50e0fca..caa4d82 100644
--- a/include/block/dirty-bitmap.h
+++ b/include/block/dirty-bitmap.h
@@ -32,6 +32,8 @@ uint32_t bdrv_get_default_bitmap_granularity(BlockDriverState *bs);
 uint32_t bdrv_dirty_bitmap_granularity(BdrvDirtyBitmap *bitmap);
 bool bdrv_dirty_bitmap_enabled(BdrvDirtyBitmap *bitmap);
 bool bdrv_dirty_bitmap_frozen(BdrvDirtyBitmap *bitmap);
+const char *bdrv_dirty_bitmap_name(const BdrvDirtyBitmap *bitmap);
+int64_t bdrv_dirty_bitmap_size(const BdrvDirtyBitmap *bitmap);
 DirtyBitmapStatus bdrv_dirty_bitmap_status(BdrvDirtyBitmap *bitmap);
 int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap,
                    int64_t sector);
-- 
2.7.4

  parent reply	other threads:[~2016-07-18 20:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-18 20:57 [Qemu-devel] [PATCH v7 00/10] Dirty bitmap changes for migration/persistence work John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 01/10] block: Hide HBitmap in block dirty bitmap interface John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 02/10] HBitmap: Introduce "meta" bitmap to track bit changes John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 03/10] tests: Add test code for meta bitmap John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 04/10] block: Support meta dirty bitmap John Snow
2016-07-22 21:57   ` Max Reitz
2016-07-22 21:58     ` John Snow
2016-07-18 20:57 ` John Snow [this message]
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 06/10] block: Assert that bdrv_release_dirty_bitmap succeeded John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 07/10] hbitmap: serialization John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 08/10] block: BdrvDirtyBitmap serialization interface John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 09/10] tests: Add test code for hbitmap serialization John Snow
2016-07-22 21:57   ` Max Reitz
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 10/10] block: More operations for meta dirty bitmap John Snow

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=1468875431-16646-6-git-send-email-jsnow@redhat.com \
    --to=jsnow@redhat.com \
    --cc=famz@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.