File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -599,14 +599,14 @@ BlockDriverState *bdrv_next(BdrvNextIterator *it)
599
599
/* Must be called from the main loop */
600
600
assert (qemu_get_current_aio_context () == qemu_get_aio_context ());
601
601
602
+ old_bs = it -> bs ;
603
+
602
604
/* First, return all root nodes of BlockBackends. In order to avoid
603
605
* returning a BDS twice when multiple BBs refer to it, we only return it
604
606
* if the BB is the first one in the parent list of the BDS. */
605
607
if (it -> phase == BDRV_NEXT_BACKEND_ROOTS ) {
606
608
BlockBackend * old_blk = it -> blk ;
607
609
608
- old_bs = old_blk ? blk_bs (old_blk ) : NULL ;
609
-
610
610
do {
611
611
it -> blk = blk_all_next (it -> blk );
612
612
bs = it -> blk ? blk_bs (it -> blk ) : NULL ;
@@ -620,11 +620,10 @@ BlockDriverState *bdrv_next(BdrvNextIterator *it)
620
620
if (bs ) {
621
621
bdrv_ref (bs );
622
622
bdrv_unref (old_bs );
623
+ it -> bs = bs ;
623
624
return bs ;
624
625
}
625
626
it -> phase = BDRV_NEXT_MONITOR_OWNED ;
626
- } else {
627
- old_bs = it -> bs ;
628
627
}
629
628
630
629
/* Then return the monitor-owned BDSes without a BB attached. Ignore all
You can’t perform that action at this time.
0 commit comments