Skip to content

Commit

Permalink
block: Convert bdrv_pwrite_compressed() to BdrvChild
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
CC: Jeff Cody <jcody@redhat.com>
CC: Markus Armbruster <armbru@redhat.com>
CC: Eric Blake <eblake@redhat.com>
CC: John Snow <jsnow@redhat.com>
CC: Stefan Hajnoczi <stefanha@redhat.com>
CC: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
pbutsykin authored and kevmw committed Sep 5, 2016
1 parent fe5c135 commit 751e2f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion block/block-backend.c
Expand Up @@ -1493,7 +1493,7 @@ int blk_pwrite_compressed(BlockBackend *blk, int64_t offset, const void *buf,
return ret;
}

return bdrv_pwrite_compressed(blk_bs(blk), offset, buf, count);
return bdrv_pwrite_compressed(blk->root, offset, buf, count);
}

int blk_truncate(BlockBackend *blk, int64_t offset)
Expand Down
3 changes: 2 additions & 1 deletion block/io.c
Expand Up @@ -1868,9 +1868,10 @@ int bdrv_is_allocated_above(BlockDriverState *top,
return 0;
}

int bdrv_pwrite_compressed(BlockDriverState *bs, int64_t offset,
int bdrv_pwrite_compressed(BdrvChild *child, int64_t offset,
const void *buf, int bytes)
{
BlockDriverState *bs = child->bs;
BlockDriver *drv = bs->drv;
int ret;

Expand Down
2 changes: 1 addition & 1 deletion include/block/block.h
Expand Up @@ -399,7 +399,7 @@ const char *bdrv_get_node_name(const BlockDriverState *bs);
const char *bdrv_get_device_name(const BlockDriverState *bs);
const char *bdrv_get_device_or_node_name(const BlockDriverState *bs);
int bdrv_get_flags(BlockDriverState *bs);
int bdrv_pwrite_compressed(BlockDriverState *bs, int64_t offset,
int bdrv_pwrite_compressed(BdrvChild *child, int64_t offset,
const void *buf, int bytes);
int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs);
Expand Down

0 comments on commit 751e2f0

Please sign in to comment.