diff options
author | Kevin Wolf <kwolf@redhat.com> | 2017-02-16 18:39:03 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2017-02-24 16:09:23 +0100 |
commit | 52cdbc5869a3fbbe4d91c83e97dffb212af28ce3 (patch) | |
tree | 73198d7c2deb39b1d04d7b4d29729198aa1a62f7 /block.c | |
parent | becc347e1ca6884b4bc74a0572d3206bee7fec13 (diff) | |
download | qemu-52cdbc5869a3fbbe4d91c83e97dffb212af28ce3.zip |
block: Pass BdrvChild to bdrv_truncate()
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2626,8 +2626,9 @@ exit: /** * Truncate file to 'offset' bytes (needed only for file protocols) */ -int bdrv_truncate(BlockDriverState *bs, int64_t offset) +int bdrv_truncate(BdrvChild *child, int64_t offset) { + BlockDriverState *bs = child->bs; BlockDriver *drv = bs->drv; int ret; if (!drv) |