mirror of https://github.com/xqemu/xqemu.git
block: Drop bdrv_find_whitelisted_format()
It is unused by now, so we can drop it. Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
053e1578c9
commit
cf25ff850f
7
block.c
7
block.c
|
@ -313,13 +313,6 @@ static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockDriver *bdrv_find_whitelisted_format(const char *format_name,
|
|
||||||
bool read_only)
|
|
||||||
{
|
|
||||||
BlockDriver *drv = bdrv_find_format(format_name);
|
|
||||||
return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
typedef struct CreateCo {
|
typedef struct CreateCo {
|
||||||
BlockDriver *drv;
|
BlockDriver *drv;
|
||||||
char *filename;
|
char *filename;
|
||||||
|
|
|
@ -193,8 +193,6 @@ BlockDriver *bdrv_find_protocol(const char *filename,
|
||||||
bool allow_protocol_prefix,
|
bool allow_protocol_prefix,
|
||||||
Error **errp);
|
Error **errp);
|
||||||
BlockDriver *bdrv_find_format(const char *format_name);
|
BlockDriver *bdrv_find_format(const char *format_name);
|
||||||
BlockDriver *bdrv_find_whitelisted_format(const char *format_name,
|
|
||||||
bool readonly);
|
|
||||||
int bdrv_create(BlockDriver *drv, const char* filename,
|
int bdrv_create(BlockDriver *drv, const char* filename,
|
||||||
QemuOpts *opts, Error **errp);
|
QemuOpts *opts, Error **errp);
|
||||||
int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp);
|
int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp);
|
||||||
|
|
Loading…
Reference in New Issue