diff options
author | Liran Schour <lirans@il.ibm.com> | 2010-01-26 10:31:48 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-02-09 16:56:14 -0600 |
commit | aaa0eb75e2e56d483c89731a447c999985713b43 (patch) | |
tree | 1d026f3e2867cabc2e896b82aede646297aee8a6 /block.h | |
parent | d76cac7dfbff76acb8eac2de849d148b0ff8cbbb (diff) | |
download | qemu-aaa0eb75e2e56d483c89731a447c999985713b43.tar.gz qemu-aaa0eb75e2e56d483c89731a447c999985713b43.tar.bz2 qemu-aaa0eb75e2e56d483c89731a447c999985713b43.zip |
Count dirty blocks and expose an API to get dirty count
This will manage dirty counter for each device and will allow to get the
dirty counter from above.
Signed-off-by: Liran Schour <lirans@il.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block.h')
-rw-r--r-- | block.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -200,4 +200,5 @@ void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable); int bdrv_get_dirty(BlockDriverState *bs, int64_t sector); void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors); +int64_t bdrv_get_dirty_count(BlockDriverState *bs); #endif |