block: push bdrv_change_backing_file error checking up from drivers
This check applies to all drivers, but QED lacks it. Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
e86fe18ac9
commit
5f3777945d
5
block.c
5
block.c
@ -1460,6 +1460,11 @@ int bdrv_change_backing_file(BlockDriverState *bs,
|
|||||||
{
|
{
|
||||||
BlockDriver *drv = bs->drv;
|
BlockDriver *drv = bs->drv;
|
||||||
|
|
||||||
|
/* Backing file format doesn't make sense without a backing file */
|
||||||
|
if (backing_fmt && !backing_file) {
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
if (drv->bdrv_change_backing_file != NULL) {
|
if (drv->bdrv_change_backing_file != NULL) {
|
||||||
return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
|
return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1011,11 +1011,6 @@ fail:
|
|||||||
static int qcow2_change_backing_file(BlockDriverState *bs,
|
static int qcow2_change_backing_file(BlockDriverState *bs,
|
||||||
const char *backing_file, const char *backing_fmt)
|
const char *backing_file, const char *backing_fmt)
|
||||||
{
|
{
|
||||||
/* Backing file format doesn't make sense without a backing file */
|
|
||||||
if (backing_fmt && !backing_file) {
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
|
pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
|
||||||
pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
|
pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user