Skip to content

Commit

Permalink
block: Drop bdrv_new_root()
Browse files Browse the repository at this point in the history
It is unused now, so we may just as well drop it.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
XanClic authored and kevmw committed May 25, 2016
1 parent 28eb9b1 commit 9bddf75
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions block.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,6 @@ void bdrv_register(BlockDriver *bdrv)
QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
}

BlockDriverState *bdrv_new_root(void)
{
return bdrv_new();
}

BlockDriverState *bdrv_new(void)
{
BlockDriverState *bs;
Expand Down
1 change: 0 additions & 1 deletion include/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ BlockDriver *bdrv_find_format(const char *format_name);
int bdrv_create(BlockDriver *drv, const char* filename,
QemuOpts *opts, Error **errp);
int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp);
BlockDriverState *bdrv_new_root(void);
BlockDriverState *bdrv_new(void);
void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top);
void bdrv_replace_in_backing_chain(BlockDriverState *old,
Expand Down

0 comments on commit 9bddf75

Please sign in to comment.