]> git.proxmox.com Git - mirror_qemu.git/commit - block.c
block: Add 'keep_old_opts' parameter to bdrv_reopen_queue()
authorAlberto Garcia <berto@igalia.com>
Tue, 12 Mar 2019 16:48:44 +0000 (18:48 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 12 Mar 2019 19:30:14 +0000 (20:30 +0100)
commit077e8e2018bce66aa1d1a87fa42beb24992c490f
tree6d10ab50b5b37237fe4debb701deb83d974aa537
parent6585493369819a48d34a86d57ec6b97cb5cd9bc0
block: Add 'keep_old_opts' parameter to bdrv_reopen_queue()

The bdrv_reopen_queue() function is used to create a queue with
the BDSs that are going to be reopened and their new options. Once
the queue is ready bdrv_reopen_multiple() is called to perform the
operation.

The original options from each one of the BDSs are kept, with the new
options passed to bdrv_reopen_queue() applied on top of them.

For "x-blockdev-reopen" we want a function that behaves much like
"blockdev-add". We want to ignore the previous set of options so that
only the ones actually specified by the user are applied, with the
rest having their default values.

One of the things that we need is a way to tell bdrv_reopen_queue()
whether we want to keep the old set of options or not, and that's what
this patch does. All current callers are setting this new parameter to
true and x-blockdev-reopen will set it to false.

Signed-off-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block.c
block/replication.c
include/block/block.h
qemu-io-cmds.c