mirror of https://github.com/xqemu/xqemu.git
block: Clean up bdrv_snapshots()
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
f9092b108f
commit
3ac906f771
9
block.c
9
block.c
|
@ -1789,19 +1789,18 @@ BlockDriverState *bdrv_snapshots(void)
|
|||
{
|
||||
BlockDriverState *bs;
|
||||
|
||||
if (bs_snapshots)
|
||||
if (bs_snapshots) {
|
||||
return bs_snapshots;
|
||||
}
|
||||
|
||||
bs = NULL;
|
||||
while ((bs = bdrv_next(bs))) {
|
||||
if (bdrv_can_snapshot(bs)) {
|
||||
goto ok;
|
||||
bs_snapshots = bs;
|
||||
return bs;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
ok:
|
||||
bs_snapshots = bs;
|
||||
return bs;
|
||||
}
|
||||
|
||||
int bdrv_snapshot_create(BlockDriverState *bs,
|
||||
|
|
Loading…
Reference in New Issue