diff options
| author | Fam Zheng | 2015-06-08 07:56:11 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi | 2015-07-02 11:06:23 +0200 |
| commit | 6e82e4bce127654b2dd42ef393587775be792334 (patch) | |
| tree | 89a712779cde82d3902226938fc626536bc7b02e /include | |
| parent | block: Fix dirty bitmap in bdrv_co_discard (diff) | |
| download | qemu-6e82e4bce127654b2dd42ef393587775be792334.tar.gz qemu-6e82e4bce127654b2dd42ef393587775be792334.tar.xz qemu-6e82e4bce127654b2dd42ef393587775be792334.zip | |
block: Remove bdrv_reset_dirty
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 <eblake@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/block/block_int.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/block/block_int.h b/include/block/block_int.h index 83ed1a5f7a..8996baf2f0 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -662,7 +662,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 */ |
