From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, jcody@redhat.com, stefanha@redhat.com
Subject: [Qemu-devel] [PATCH 17/20] block: support a persistent dirty bitmap
Date: Wed, 12 Dec 2012 14:46:36 +0100 [thread overview]
Message-ID: <1355319999-30627-18-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1355319999-30627-1-git-send-email-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
block.c | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
block.h | 5 +++
block_int.h | 5 +++
3 files changed, 141 insertions(+), 2 deletions(-)
diff --git a/block.c b/block.c
index 66e30aa..d993d0b 100644
--- a/block.c
+++ b/block.c
@@ -1274,6 +1274,7 @@ static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
/* dirty bitmap */
bs_dest->dirty_bitmap = bs_src->dirty_bitmap;
+ bs_dest->dirty_usage = bs_src->dirty_usage;
/* job */
bs_dest->in_use = bs_src->in_use;
@@ -3973,6 +3974,16 @@ int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
}
}
+ /* The persistent bitmap is flushed synchronously; we may want to
+ * move this to a thread pool.
+ */
+ if (bs->persistent_bitmap) {
+ ret = qemu_mmap_flush(&bs->persistent_mmap);
+ if (ret < 0) {
+ return ret;
+ }
+ }
+
/* But don't actually force it to the disk with cache=unsafe */
if (bs->open_flags & BDRV_O_NO_FLUSH) {
goto flush_parent;
@@ -4223,9 +4234,17 @@ void *qemu_blockalign(BlockDriverState *bs, size_t size)
void bdrv_enable_dirty_tracking(BlockDriverState *bs, int granularity)
{
int64_t bitmap_size;
+ int granularity_bits;
assert((granularity & (granularity - 1)) == 0);
granularity >>= BDRV_SECTOR_BITS;
+ granularity_bits = ffs(granularity) - 1;
+ bs->dirty_usage++;
+ if (bs->dirty_usage != 1) {
+ assert(granularity_bits == hbitmap_granularity(bs->dirty_bitmap));
+ return;
+ }
+
assert(!bs->dirty_bitmap);
bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS);
bs->dirty_bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1);
@@ -4233,9 +4252,96 @@ void bdrv_enable_dirty_tracking(BlockDriverState *bs, int granularity)
void bdrv_disable_dirty_tracking(BlockDriverState *bs)
{
+ if (bs->dirty_usage == 0) {
+ return;
+ }
+
+ bs->dirty_usage--;
+ if (bs->dirty_usage != 0) {
+ return;
+ }
+
+ hbitmap_free(bs->dirty_bitmap);
+ bs->dirty_bitmap = NULL;
+ bdrv_disable_persistent_dirty_tracking(bs);
+}
+
+void bdrv_enable_persistent_dirty_tracking(BlockDriverState *bs, const char *file,
+ Error **errp)
+{
+ int rc;
+ int granularity_bits;
+ int64_t bitmap_size;
+ size_t file_size;
+ QEMUMmapArea mm;
+ HBitmap *new_bitmap;
+ bool load;
+
+ assert(bs->dirty_usage > 0);
+
+ granularity_bits = hbitmap_granularity(bs->dirty_bitmap);
+ bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS);
+ file_size = hbitmap_required_size(bitmap_size, granularity_bits);
+
+ load = access(file, R_OK) >= 0;
+ if (bdrv_in_use(bs) && load) {
+ error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs));
+ return;
+ }
+
+ /*
+ * Do not touch fields in BS until we're sure we can complete
+ * successfully.
+ */
+ rc = qemu_mmap_alloc(&mm, file, file_size);
+ if (rc < 0) {
+ error_set(errp, QERR_OPEN_FILE_FAILED, file);
+ return;
+ }
+
+ new_bitmap = hbitmap_alloc_with_data(bitmap_size, granularity_bits, mm.mem);
+ if (!load) {
+ hbitmap_copy(new_bitmap, bs->dirty_bitmap);
+ rc = qemu_mmap_flush(&mm);
+ if (rc < 0) {
+ error_set(errp, QERR_OPEN_FILE_FAILED, file);
+ hbitmap_free(new_bitmap);
+ qemu_mmap_free(&mm);
+ return;
+ }
+ }
+
+ /*
+ * Now we can complete the switch from the old to the new bitmap.
+ */
+ if (bs->persistent_bitmap) {
+ bdrv_disable_persistent_dirty_tracking(bs);
+ }
+
+ bs->persistent_mmap = mm;
+ bs->persistent_bitmap = new_bitmap;
+ if (load) {
+ hbitmap_copy(bs->dirty_bitmap, new_bitmap);
+ }
+}
+
+void bdrv_disable_persistent_dirty_tracking(BlockDriverState *bs)
+{
+ if (!bs->persistent_bitmap) {
+ return;
+ }
+
+ hbitmap_free(bs->persistent_bitmap);
+ bs->persistent_bitmap = NULL;
+ qemu_mmap_free(&bs->persistent_mmap);
+}
+
+int bdrv_get_dirty_tracking_granularity(BlockDriverState *bs)
+{
if (bs->dirty_bitmap) {
- hbitmap_free(bs->dirty_bitmap);
- bs->dirty_bitmap = NULL;
+ return BDRV_SECTOR_SIZE << hbitmap_granularity(bs->dirty_bitmap);
+ } else {
+ return 0;
}
}
@@ -4257,6 +4363,9 @@ void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector,
int nr_sectors)
{
hbitmap_set(bs->dirty_bitmap, cur_sector, nr_sectors);
+ if (bs->persistent_bitmap) {
+ hbitmap_set(bs->persistent_bitmap, cur_sector, nr_sectors);
+ }
}
void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
@@ -4265,6 +4374,26 @@ void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
hbitmap_reset(bs->dirty_bitmap, cur_sector, nr_sectors);
}
+int bdrv_flush_dirty_tracking(BlockDriverState *bs, bool set)
+{
+ /* Because of the way bdrv_reset_dirty and bdrv_set_dirty work,
+ * bs->persistent_bitmap will always be a subset of bs->dirty_bitmap,
+ * and this hbitmap_copy will only remove bits rather than add them.
+ *
+ * Because no bits are added to the persistent bitmap, the on-disk
+ * bitmap is still a conservative approximation of the in-memory
+ * bitmap; we do not need to flush to disk, the OS will take care of
+ * writeback in due time.
+ */
+ if (bs->persistent_bitmap) {
+ hbitmap_copy(bs->persistent_bitmap, bs->dirty_bitmap);
+ if (set) {
+ return qemu_mmap_flush(&bs->persistent_mmap);
+ }
+ }
+ return 0;
+}
+
int64_t bdrv_get_dirty_count(BlockDriverState *bs)
{
if (bs->dirty_bitmap) {
diff --git a/block.h b/block.h
index 78a39fb..1eb4817 100644
--- a/block.h
+++ b/block.h
@@ -363,6 +363,11 @@ void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors);
void bdrv_dirty_iter_init(BlockDriverState *bs, struct HBitmapIter *hbi);
int64_t bdrv_get_dirty_count(BlockDriverState *bs);
+int bdrv_get_dirty_tracking_granularity(BlockDriverState *bs);
+void bdrv_enable_persistent_dirty_tracking(BlockDriverState *bs, const char *file, Error **errp);
+void bdrv_disable_persistent_dirty_tracking(BlockDriverState *bs);
+int bdrv_flush_dirty_tracking(BlockDriverState *bs, bool set);
+
void bdrv_enable_copy_on_read(BlockDriverState *bs);
void bdrv_disable_copy_on_read(BlockDriverState *bs);
diff --git a/block_int.h b/block_int.h
index 8f54b41..ff96351 100644
--- a/block_int.h
+++ b/block_int.h
@@ -270,7 +270,12 @@ struct BlockDriverState {
bool iostatus_enabled;
BlockDeviceIoStatus iostatus;
char device_name[32];
+
HBitmap *dirty_bitmap;
+ int dirty_usage;
+ QEMUMmapArea persistent_mmap;
+ HBitmap *persistent_bitmap;
+
int in_use; /* users other than guest access, eg. block migration */
QTAILQ_ENTRY(BlockDriverState) list;
--
1.8.0.1
next prev parent reply other threads:[~2012-12-12 13:48 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-12 13:46 [Qemu-devel] [PATCH 00/20] Block device mirroring enhancements, 12-12-12 edition Paolo Bonzini
2012-12-12 13:46 ` [Qemu-devel] [PATCH 01/20] host-utils: add ffsl Paolo Bonzini
2012-12-12 23:41 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 02/20] add hierarchical bitmap data type and test cases Paolo Bonzini
2012-12-14 0:04 ` Eric Blake
2013-01-11 18:27 ` Stefan Hajnoczi
2012-12-12 13:46 ` [Qemu-devel] [PATCH 03/20] block: implement dirty bitmap using HBitmap Paolo Bonzini
2012-12-14 0:27 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 04/20] block: make round_to_clusters public Paolo Bonzini
2012-12-14 20:13 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 05/20] mirror: perform COW if the cluster size is bigger than the granularity Paolo Bonzini
2012-12-14 20:21 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 06/20] block: return count of dirty sectors, not chunks Paolo Bonzini
2012-12-14 20:49 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 07/20] block: allow customizing the granularity of the dirty bitmap Paolo Bonzini
2012-12-14 21:27 ` Eric Blake
2012-12-15 9:11 ` Paolo Bonzini
2012-12-12 13:46 ` [Qemu-devel] [PATCH 08/20] mirror: allow customizing the granularity Paolo Bonzini
2012-12-14 22:01 ` Eric Blake
2013-01-14 11:28 ` Stefan Hajnoczi
2012-12-12 13:46 ` [Qemu-devel] [PATCH 09/20] mirror: switch mirror_iteration to AIO Paolo Bonzini
2012-12-14 22:11 ` Eric Blake
2012-12-15 9:09 ` Paolo Bonzini
2012-12-15 13:05 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 10/20] mirror: add buf-size argument to drive-mirror Paolo Bonzini
2012-12-14 22:22 ` Eric Blake
2012-12-15 9:09 ` Paolo Bonzini
2013-01-14 11:41 ` Stefan Hajnoczi
2012-12-12 13:46 ` [Qemu-devel] [PATCH 11/20] mirror: support more than one in-flight AIO operation Paolo Bonzini
2012-12-14 22:32 ` Eric Blake
2013-01-14 12:56 ` Stefan Hajnoczi
2013-01-14 13:28 ` Paolo Bonzini
2012-12-12 13:46 ` [Qemu-devel] [PATCH 12/20] mirror: support arbitrarily-sized iterations Paolo Bonzini
2012-12-14 22:39 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 13/20] oslib: add a wrapper for mmap/munmap Paolo Bonzini
2012-12-14 22:54 ` Eric Blake
2012-12-15 9:06 ` Paolo Bonzini
2012-12-12 13:46 ` [Qemu-devel] [PATCH 14/20] hbitmap: add hbitmap_alloc_with_data and hbitmap_required_size Paolo Bonzini
2012-12-17 17:14 ` Eric Blake
2012-12-17 17:18 ` Paolo Bonzini
2012-12-12 13:46 ` [Qemu-devel] [PATCH 15/20] hbitmap: add hbitmap_copy Paolo Bonzini
2012-12-17 18:25 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 16/20] block: split bdrv_enable_dirty_tracking and bdrv_disable_dirty_tracking Paolo Bonzini
2012-12-20 18:26 ` Eric Blake
2012-12-12 13:46 ` Paolo Bonzini [this message]
2012-12-20 23:03 ` [Qemu-devel] [PATCH 17/20] block: support a persistent dirty bitmap Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 18/20] mirror: add support for " Paolo Bonzini
2012-12-20 23:49 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 19/20] block: choose the default dirty bitmap granularity in bdrv_enable_dirty_tracking Paolo Bonzini
2012-12-20 23:53 ` Eric Blake
2012-12-12 13:46 ` [Qemu-devel] [PATCH 20/20] monitor: add commands to start/stop dirty bitmap Paolo Bonzini
2012-12-21 18:30 ` Eric Blake
2013-01-14 13:02 ` [Qemu-devel] [PATCH 00/20] Block device mirroring enhancements, 12-12-12 edition Stefan Hajnoczi
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=1355319999-30627-18-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=jcody@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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 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).