]> git.proxmox.com Git - mirror_qemu.git/commit
block: Update bs->open_flags earlier in bdrv_open_common()
authorAlberto Garcia <berto@igalia.com>
Thu, 15 Sep 2016 14:53:01 +0000 (17:53 +0300)
committerKevin Wolf <kwolf@redhat.com>
Fri, 23 Sep 2016 11:36:10 +0000 (13:36 +0200)
commit9b7e8691670fab57c387b6955dc14a09696ae034
treefc8224a956fc2cfc03a154ce906c32c87e31e37f
parent14499ea5413be45bbb3934dd6fd8fa27c54c1dd4
block: Update bs->open_flags earlier in bdrv_open_common()

We're only doing this immediately before opening the image, but
bs->open_flags is used earlier in the function. At the moment this is
not causing problems because none of the checked flags are modified by
update_flags_from_options(), but this will change when we introduce
the "read-only" option.

This patch calls update_flags_from_options() at the beginning of the
function, immediately after creating the QemuOpts.

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