mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-31 22:11:53 -06:00
block: Mark bdrv_refresh_filename() and callers GRAPH_RDLOCK
This adds GRAPH_RDLOCK annotations to declare that callers of bdrv_refresh_filename() need to hold a reader lock for the graph because it accesses the children list of a node. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Message-ID: <20230929145157.45443-11-kwolf@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
15f3f1fe57
commit
b7cfc7d58e
12 changed files with 101 additions and 47 deletions
|
@ -272,7 +272,7 @@ struct BlockDriver {
|
|||
* Refreshes the bs->exact_filename field. If that is impossible,
|
||||
* bs->exact_filename has to be left empty.
|
||||
*/
|
||||
void (*bdrv_refresh_filename)(BlockDriverState *bs);
|
||||
void GRAPH_RDLOCK_PTR (*bdrv_refresh_filename)(BlockDriverState *bs);
|
||||
|
||||
/*
|
||||
* Gathers the open options for all children into @target.
|
||||
|
@ -295,15 +295,15 @@ struct BlockDriver {
|
|||
* block driver which implements it is probably doing something
|
||||
* shady regarding its runtime option structure.
|
||||
*/
|
||||
void (*bdrv_gather_child_options)(BlockDriverState *bs, QDict *target,
|
||||
bool backing_overridden);
|
||||
void GRAPH_RDLOCK_PTR (*bdrv_gather_child_options)(
|
||||
BlockDriverState *bs, QDict *target, bool backing_overridden);
|
||||
|
||||
/*
|
||||
* Returns an allocated string which is the directory name of this BDS: It
|
||||
* will be used to make relative filenames absolute by prepending this
|
||||
* function's return value to them.
|
||||
*/
|
||||
char *(*bdrv_dirname)(BlockDriverState *bs, Error **errp);
|
||||
char * GRAPH_RDLOCK_PTR (*bdrv_dirname)(BlockDriverState *bs, Error **errp);
|
||||
|
||||
/*
|
||||
* This informs the driver that we are no longer interested in the result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue