[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 05/17] block: Remove bdrv_reset_dirty
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PULL 05/17] block: Remove bdrv_reset_dirty |
Date: |
Fri, 5 Jun 2015 12:57:20 +0100 |
From: Fam Zheng <address@hidden>
Using this function would always be wrong because a dirty bitmap must
have a specific owner that consumes the dirty bits and calls
bdrv_reset_dirty_bitmap().
Remove the unused function to avoid future misuse.
Reviewed-by: Eric Blake <address@hidden>
Signed-off-by: Fam Zheng <address@hidden>
Reviewed-by: John Snow <address@hidden>
Message-id: address@hidden
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
block.c | 12 ------------
include/block/block_int.h | 2 --
2 files changed, 14 deletions(-)
diff --git a/block.c b/block.c
index 2b9ceae..9890707 100644
--- a/block.c
+++ b/block.c
@@ -3347,18 +3347,6 @@ void bdrv_set_dirty(BlockDriverState *bs, int64_t
cur_sector,
}
}
-void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
- int nr_sectors)
-{
- BdrvDirtyBitmap *bitmap;
- QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
- if (!bdrv_dirty_bitmap_enabled(bitmap)) {
- continue;
- }
- hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors);
- }
-}
-
/**
* Advance an HBitmapIter to an arbitrary offset.
*/
diff --git a/include/block/block_int.h b/include/block/block_int.h
index 4e0d700..459fe1c 100644
--- a/include/block/block_int.h
+++ b/include/block/block_int.h
@@ -640,7 +640,5 @@ bool blk_dev_is_medium_locked(BlockBackend *blk);
void blk_dev_resize_cb(BlockBackend *blk);
void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors);
-void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
- int nr_sectors);
#endif /* BLOCK_INT_H */
--
2.4.2
- [Qemu-devel] [PULL 00/17] Block patches, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 01/17] block: Add bdrv_get_block_status_above, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 02/17] qmp: Add optional bool "unmap" to drive-mirror, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 05/17] block: Remove bdrv_reset_dirty,
Stefan Hajnoczi <=
- [Qemu-devel] [PULL 03/17] mirror: Do zero write on target if sectors not allocated, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 04/17] block: Fix dirty bitmap in bdrv_co_discard, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 06/17] qemu-iotests: Make block job methods common, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 07/17] qemu-iotests: Add test case for mirror with unmap, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 08/17] iotests: Use event_wait in wait_ready, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 09/17] Revert "iothread: release iothread around aio_poll", Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 10/17] throttle: Extract timers from ThrottleState into a separate structure, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 12/17] throttle: Add throttle group infrastructure tests, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 11/17] throttle: Add throttle group infrastructure, Stefan Hajnoczi, 2015/06/05
- [Qemu-devel] [PULL 14/17] throttle: acquire the ThrottleGroup lock in bdrv_swap(), Stefan Hajnoczi, 2015/06/05