]> git.proxmox.com Git - mirror_qemu.git/commit
block: Add a 'mutable_opts' field to BlockDriver
authorAlberto Garcia <berto@igalia.com>
Tue, 12 Mar 2019 16:48:48 +0000 (18:48 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 12 Mar 2019 19:30:14 +0000 (20:30 +0100)
commit8a2ce0bc1eb447c19c52422c03e690a420ea3ec7
treeea4398dbcc4f7211347e4b0100de2030a680c10b
parentcb828c31de125d8c88ba1c3510b11343cbd211b3
block: Add a 'mutable_opts' field to BlockDriver

If we reopen a BlockDriverState and there is an option that is present
in bs->options but missing from the new set of options then we have to
return an error unless the driver is able to reset it to its default
value.

This patch adds a new 'mutable_opts' field to BlockDriver. This is
a list of runtime options that can be modified during reopen. If an
option in this list is unspecified on reopen then it must be reset (or
return an error).

Signed-off-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/file-posix.c
block/qcow2.c
block/raw-format.c
include/block/block_int.h