diff options
author | Max Reitz | 2020-05-13 13:05:17 +0200 |
---|---|---|
committer | Kevin Wolf | 2020-05-18 19:05:25 +0200 |
commit | 272c02eaef0388225c1dcdbec99b2e838bb64d23 (patch) | |
tree | 0b2dd0f70a9c93cf660a3a0ec31ed0896dd86fbc /include/block | |
parent | block: Pass BdrvChildRole to bdrv_child_perm() (diff) | |
download | qemu-272c02eaef0388225c1dcdbec99b2e838bb64d23.tar.gz qemu-272c02eaef0388225c1dcdbec99b2e838bb64d23.tar.xz qemu-272c02eaef0388225c1dcdbec99b2e838bb64d23.zip |
block: Pass BdrvChildRole to .inherit_options()
For now, all callers (effectively) pass 0 and no callee evaluates thie
value. Later patches will change both.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200513110544.176672-8-mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r-- | include/block/block_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/block/block_int.h b/include/block/block_int.h index dc4bc486d6..8c1160a577 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -677,7 +677,8 @@ struct BdrvChildClass { * non-BDS parents. */ bool parent_is_bds; - void (*inherit_options)(int *child_flags, QDict *child_options, + void (*inherit_options)(BdrvChildRole role, + int *child_flags, QDict *child_options, int parent_flags, QDict *parent_options); void (*change_media)(BdrvChild *child, bool load); |