block: Assert that flags are up-to-date in bdrv_reopen_prepare()
commite6d79c41c961bcdacb60b46c88009b33841f90a7
authorAlberto Garcia <berto@igalia.com>
Mon, 12 Nov 2018 14:00:47 +0000 (12 16:00 +0200)
committerKevin Wolf <kwolf@redhat.com>
Fri, 14 Dec 2018 10:55:02 +0000 (14 11:55 +0100)
treeb6c1898b58446a7f37adb5cfb812a5207faa0f23
parent8eb4b07b6f9466f850be5cfb7d471cdd97086178
block: Assert that flags are up-to-date in bdrv_reopen_prepare()

Towards the end of bdrv_reopen_queue_child(), before starting to
process the children, the update_flags_from_options() function is
called in order to have BDRVReopenState.flags in sync with the options
from the QDict.

This is necessary because during the reopen process flags must be
updated for all nodes in the queue so bdrv_is_writable_after_reopen()
and the permission checks work correctly.

Because of that, calling update_flags_from_options() again in
bdrv_reopen_prepare() doesn't really change the flags (they are
already up-to-date). But we need to call it in order to remove those
options from QemuOpts and that way indicate that they have been
processed.

Signed-off-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block.c