mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
block: Add blk_get_refcnt()
This function returns the reference count of a given BlockBackend. For convenience, it returns 0 if the BlockBackend pointer is NULL. Signed-off-by: Alberto Garcia <berto@igalia.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-id: dfdd8a17dbe3288842840636d2cfe5bb895abcb0.1446475331.git.berto@igalia.com Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
10f3cd15dd
commit
f636ae85f3
2 changed files with 6 additions and 0 deletions
|
@ -189,6 +189,11 @@ static void drive_info_del(DriveInfo *dinfo)
|
|||
g_free(dinfo);
|
||||
}
|
||||
|
||||
int blk_get_refcnt(BlockBackend *blk)
|
||||
{
|
||||
return blk ? blk->refcnt : 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increment @blk's reference count.
|
||||
* @blk must not be null.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue