mirror of https://github.com/xemu-project/xemu.git
qcow2: Move rest of option handling to qcow2_update_options()
With this commit, the handling of driver-specific options in qcow2_open() is completely separated out into qcow2_update_options(). Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
90efa0eaef
commit
94edf3fbe8
134
block/qcow2.c
134
block/qcow2.c
|
@ -589,15 +589,77 @@ static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qcow2_update_options(BlockDriverState *bs, QemuOpts *opts,
|
static int qcow2_update_options(BlockDriverState *bs, QDict *options,
|
||||||
int flags, Error **errp)
|
int flags, Error **errp)
|
||||||
{
|
{
|
||||||
BDRVQcow2State *s = bs->opaque;
|
BDRVQcow2State *s = bs->opaque;
|
||||||
|
QemuOpts *opts = NULL;
|
||||||
const char *opt_overlap_check, *opt_overlap_check_template;
|
const char *opt_overlap_check, *opt_overlap_check_template;
|
||||||
int overlap_check_template = 0;
|
int overlap_check_template = 0;
|
||||||
|
uint64_t l2_cache_size, refcount_cache_size;
|
||||||
|
uint64_t cache_clean_interval;
|
||||||
int i;
|
int i;
|
||||||
|
Error *local_err = NULL;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort);
|
||||||
|
qemu_opts_absorb_qdict(opts, options, &local_err);
|
||||||
|
if (local_err) {
|
||||||
|
error_propagate(errp, local_err);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* get L2 table/refcount block cache size from command line options */
|
||||||
|
read_cache_sizes(bs, opts, &l2_cache_size, &refcount_cache_size,
|
||||||
|
&local_err);
|
||||||
|
if (local_err) {
|
||||||
|
error_propagate(errp, local_err);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
l2_cache_size /= s->cluster_size;
|
||||||
|
if (l2_cache_size < MIN_L2_CACHE_SIZE) {
|
||||||
|
l2_cache_size = MIN_L2_CACHE_SIZE;
|
||||||
|
}
|
||||||
|
if (l2_cache_size > INT_MAX) {
|
||||||
|
error_setg(errp, "L2 cache size too big");
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
refcount_cache_size /= s->cluster_size;
|
||||||
|
if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) {
|
||||||
|
refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE;
|
||||||
|
}
|
||||||
|
if (refcount_cache_size > INT_MAX) {
|
||||||
|
error_setg(errp, "Refcount cache size too big");
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* alloc L2 table/refcount block cache */
|
||||||
|
s->l2_table_cache = qcow2_cache_create(bs, l2_cache_size);
|
||||||
|
s->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size);
|
||||||
|
if (s->l2_table_cache == NULL || s->refcount_block_cache == NULL) {
|
||||||
|
error_setg(errp, "Could not allocate metadata caches");
|
||||||
|
ret = -ENOMEM;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* New interval for cache cleanup timer */
|
||||||
|
cache_clean_interval =
|
||||||
|
qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL, 0);
|
||||||
|
if (cache_clean_interval > UINT_MAX) {
|
||||||
|
error_setg(errp, "Cache clean interval too big");
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
s->cache_clean_interval = cache_clean_interval;
|
||||||
|
cache_clean_timer_init(bs, bdrv_get_aio_context(bs));
|
||||||
|
|
||||||
|
/* Enable lazy_refcounts according to image and command line options */
|
||||||
s->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
|
s->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
|
||||||
(s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
|
(s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
|
||||||
|
|
||||||
|
@ -660,6 +722,9 @@ static int qcow2_update_options(BlockDriverState *bs, QemuOpts *opts,
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
fail:
|
fail:
|
||||||
|
qemu_opts_del(opts);
|
||||||
|
opts = NULL;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -670,12 +735,9 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
||||||
unsigned int len, i;
|
unsigned int len, i;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
QCowHeader header;
|
QCowHeader header;
|
||||||
QemuOpts *opts = NULL;
|
|
||||||
Error *local_err = NULL;
|
Error *local_err = NULL;
|
||||||
uint64_t ext_end;
|
uint64_t ext_end;
|
||||||
uint64_t l1_vm_state_index;
|
uint64_t l1_vm_state_index;
|
||||||
uint64_t l2_cache_size, refcount_cache_size;
|
|
||||||
uint64_t cache_clean_interval;
|
|
||||||
|
|
||||||
ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
|
ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
|
@ -923,71 +985,12 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* get L2 table/refcount block cache size from command line options */
|
/* Parse driver-specific options */
|
||||||
opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort);
|
ret = qcow2_update_options(bs, options, flags, errp);
|
||||||
qemu_opts_absorb_qdict(opts, options, &local_err);
|
|
||||||
if (local_err) {
|
|
||||||
error_propagate(errp, local_err);
|
|
||||||
ret = -EINVAL;
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
read_cache_sizes(bs, opts, &l2_cache_size, &refcount_cache_size,
|
|
||||||
&local_err);
|
|
||||||
if (local_err) {
|
|
||||||
error_propagate(errp, local_err);
|
|
||||||
ret = -EINVAL;
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
l2_cache_size /= s->cluster_size;
|
|
||||||
if (l2_cache_size < MIN_L2_CACHE_SIZE) {
|
|
||||||
l2_cache_size = MIN_L2_CACHE_SIZE;
|
|
||||||
}
|
|
||||||
if (l2_cache_size > INT_MAX) {
|
|
||||||
error_setg(errp, "L2 cache size too big");
|
|
||||||
ret = -EINVAL;
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
refcount_cache_size /= s->cluster_size;
|
|
||||||
if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) {
|
|
||||||
refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE;
|
|
||||||
}
|
|
||||||
if (refcount_cache_size > INT_MAX) {
|
|
||||||
error_setg(errp, "Refcount cache size too big");
|
|
||||||
ret = -EINVAL;
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* alloc L2 table/refcount block cache */
|
|
||||||
s->l2_table_cache = qcow2_cache_create(bs, l2_cache_size);
|
|
||||||
s->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size);
|
|
||||||
if (s->l2_table_cache == NULL || s->refcount_block_cache == NULL) {
|
|
||||||
error_setg(errp, "Could not allocate metadata caches");
|
|
||||||
ret = -ENOMEM;
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
cache_clean_interval =
|
|
||||||
qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL, 0);
|
|
||||||
if (cache_clean_interval > UINT_MAX) {
|
|
||||||
error_setg(errp, "Cache clean interval too big");
|
|
||||||
ret = -EINVAL;
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
s->cache_clean_interval = cache_clean_interval;
|
|
||||||
cache_clean_timer_init(bs, bdrv_get_aio_context(bs));
|
|
||||||
|
|
||||||
/* Enable lazy_refcounts according to image and command line options */
|
|
||||||
ret = qcow2_update_options(bs, opts, flags, errp);
|
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
qemu_opts_del(opts);
|
|
||||||
opts = NULL;
|
|
||||||
|
|
||||||
s->cluster_cache = g_malloc(s->cluster_size);
|
s->cluster_cache = g_malloc(s->cluster_size);
|
||||||
/* one more sector for decompressed data alignment */
|
/* one more sector for decompressed data alignment */
|
||||||
s->cluster_data = qemu_try_blockalign(bs->file, QCOW_MAX_CRYPT_CLUSTERS
|
s->cluster_data = qemu_try_blockalign(bs->file, QCOW_MAX_CRYPT_CLUSTERS
|
||||||
|
@ -1081,7 +1084,6 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
qemu_opts_del(opts);
|
|
||||||
g_free(s->unknown_header_fields);
|
g_free(s->unknown_header_fields);
|
||||||
cleanup_unknown_header_ext(bs);
|
cleanup_unknown_header_ext(bs);
|
||||||
qcow2_free_snapshots(bs);
|
qcow2_free_snapshots(bs);
|
||||||
|
|
Loading…
Reference in New Issue