diff options
author | Max Reitz <mreitz@redhat.com> | 2015-10-19 17:53:21 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-10-23 18:18:23 +0200 |
commit | 7f0e9da6f134c5303be51333696e1ff54697f3e0 (patch) | |
tree | a8f3b081651b4fe8a767bc3bbb2e0b726c1388e8 /include | |
parent | 53d8f9d8fbf85f04d423958248f8c2fbe1ece192 (diff) | |
download | qemu-7f0e9da6f134c5303be51333696e1ff54697f3e0.tar.gz qemu-7f0e9da6f134c5303be51333696e1ff54697f3e0.tar.bz2 qemu-7f0e9da6f134c5303be51333696e1ff54697f3e0.zip |
block: Move BlockAcctStats into BlockBackend
As the comment above bdrv_get_stats() says, BlockAcctStats is something
which belongs to the device instead of each BlockDriverState. This patch
therefore moves it into the BlockBackend.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/block.h | 2 | ||||
-rw-r--r-- | include/block/block_int.h | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/include/block/block.h b/include/block/block.h index 8a6f001d5c..a39cfe30a0 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -621,6 +621,4 @@ void bdrv_io_plug(BlockDriverState *bs); void bdrv_io_unplug(BlockDriverState *bs); void bdrv_flush_io_queue(BlockDriverState *bs); -BlockAcctStats *bdrv_get_stats(BlockDriverState *bs); - #endif diff --git a/include/block/block_int.h b/include/block/block_int.h index 35d4c19e29..aa00aea5da 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -399,9 +399,6 @@ struct BlockDriverState { unsigned pending_reqs[2]; QLIST_ENTRY(BlockDriverState) round_robin; - /* I/O stats (display with "info blockstats"). */ - BlockAcctStats stats; - /* Offset after the highest byte written to */ uint64_t wr_highest_offset; |