|
|
26ba25 |
From 0f3b55a758bc4e5a4fd864d5b650557407278750 Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: John Snow <jsnow@redhat.com>
|
|
|
26ba25 |
Date: Wed, 18 Jul 2018 22:54:42 +0200
|
|
|
26ba25 |
Subject: [PATCH 224/268] block/dirty-bitmap: add
|
|
|
26ba25 |
bdrv_enable_dirty_bitmap_locked
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: John Snow <jsnow@redhat.com>
|
|
|
26ba25 |
Message-id: <20180718225511.14878-7-jsnow@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 81405
|
|
|
26ba25 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 06/35] block/dirty-bitmap: add bdrv_enable_dirty_bitmap_locked
|
|
|
26ba25 |
Bugzilla: 1207657
|
|
|
26ba25 |
RH-Acked-by: Eric Blake <eblake@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Fam Zheng <famz@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
Add _locked version of bdrv_enable_dirty_bitmap, to fix dirty bitmap
|
|
|
26ba25 |
migration in the following patch.
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
|
26ba25 |
Message-id: 20180625165745.25259-2-vsementsov@virtuozzo.com
|
|
|
26ba25 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
26ba25 |
(cherry picked from commit 92bcea40d3aac62853e60426bd109b748d4d1cd2)
|
|
|
26ba25 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
block/dirty-bitmap.c | 9 +++++++--
|
|
|
26ba25 |
include/block/dirty-bitmap.h | 1 +
|
|
|
26ba25 |
2 files changed, 8 insertions(+), 2 deletions(-)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/block/dirty-bitmap.c b/block/dirty-bitmap.c
|
|
|
26ba25 |
index 4159d39..4d6ae8b 100644
|
|
|
26ba25 |
--- a/block/dirty-bitmap.c
|
|
|
26ba25 |
+++ b/block/dirty-bitmap.c
|
|
|
26ba25 |
@@ -250,6 +250,12 @@ int bdrv_dirty_bitmap_create_successor(BlockDriverState *bs,
|
|
|
26ba25 |
return 0;
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
+void bdrv_enable_dirty_bitmap_locked(BdrvDirtyBitmap *bitmap)
|
|
|
26ba25 |
+{
|
|
|
26ba25 |
+ assert(!bdrv_dirty_bitmap_frozen(bitmap));
|
|
|
26ba25 |
+ bitmap->disabled = false;
|
|
|
26ba25 |
+}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
/* Called with BQL taken. */
|
|
|
26ba25 |
void bdrv_dirty_bitmap_enable_successor(BdrvDirtyBitmap *bitmap)
|
|
|
26ba25 |
{
|
|
|
26ba25 |
@@ -453,8 +459,7 @@ void bdrv_disable_dirty_bitmap(BdrvDirtyBitmap *bitmap)
|
|
|
26ba25 |
void bdrv_enable_dirty_bitmap(BdrvDirtyBitmap *bitmap)
|
|
|
26ba25 |
{
|
|
|
26ba25 |
bdrv_dirty_bitmap_lock(bitmap);
|
|
|
26ba25 |
- assert(!bdrv_dirty_bitmap_frozen(bitmap));
|
|
|
26ba25 |
- bitmap->disabled = false;
|
|
|
26ba25 |
+ bdrv_enable_dirty_bitmap_locked(bitmap);
|
|
|
26ba25 |
bdrv_dirty_bitmap_unlock(bitmap);
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/include/block/dirty-bitmap.h b/include/block/dirty-bitmap.h
|
|
|
26ba25 |
index 1e14743..af9ba3c 100644
|
|
|
26ba25 |
--- a/include/block/dirty-bitmap.h
|
|
|
26ba25 |
+++ b/include/block/dirty-bitmap.h
|
|
|
26ba25 |
@@ -33,6 +33,7 @@ void bdrv_remove_persistent_dirty_bitmap(BlockDriverState *bs,
|
|
|
26ba25 |
Error **errp);
|
|
|
26ba25 |
void bdrv_disable_dirty_bitmap(BdrvDirtyBitmap *bitmap);
|
|
|
26ba25 |
void bdrv_enable_dirty_bitmap(BdrvDirtyBitmap *bitmap);
|
|
|
26ba25 |
+void bdrv_enable_dirty_bitmap_locked(BdrvDirtyBitmap *bitmap);
|
|
|
26ba25 |
BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs);
|
|
|
26ba25 |
uint32_t bdrv_get_default_bitmap_granularity(BlockDriverState *bs);
|
|
|
26ba25 |
uint32_t bdrv_dirty_bitmap_granularity(const BdrvDirtyBitmap *bitmap);
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|