mirror of https://github.com/xemu-project/xemu.git
qcow2: Open images with refcount order != 4
No longer refuse to open images with a different refcount entry width than 16 bits; only reject images with a refcount width larger than 64 bits (which is prohibited by the specification). Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
59c0cb7830
commit
b72faf9f78
|
@ -677,10 +677,10 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check support for various header values */
|
/* Check support for various header values */
|
||||||
if (header.refcount_order != 4) {
|
if (header.refcount_order > 6) {
|
||||||
report_unsupported(bs, errp, "%d bit reference counts",
|
error_setg(errp, "Reference count entry width too large; may not "
|
||||||
1 << header.refcount_order);
|
"exceed 64 bits");
|
||||||
ret = -ENOTSUP;
|
ret = -EINVAL;
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
s->refcount_order = header.refcount_order;
|
s->refcount_order = header.refcount_order;
|
||||||
|
|
Loading…
Reference in New Issue