From: Markus Armbruster Date: Wed, 3 Aug 2011 13:08:10 +0000 (+0200) Subject: block: Clean up bdrv_flush_all() X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~1405^2~17^2~1766^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c602a489f9685407d93beab3b121408811d20ce4;p=sdk%2Femulator%2Fqemu.git block: Clean up bdrv_flush_all() Change (!bdrv_is_removable(bs) || bdrv_is_inserted(bs)) to just bdrv_is_inserted(). Rationale: The value of bdrv_is_removable(bs) matters only when bdrv_is_inserted(bs) is false. bdrv_is_inserted(bs) is true when bs is open (bs->drv != NULL) and not an empty host drive (CD-ROM or floppy). Therefore, bdrv_is_removable(bs) matters only when: 1. bs is not open old: may call bdrv_flush(bs), which does nothing new: won't call 2. bs is an empty host drive old: may call bdrv_flush(bs), which calls driver method raw_flush(), which calls fdatasync() or equivalent, which can't do anything useful while the drive is empty new: won't call Result is bs->drv && !bdrv_is_read_only(bs) && bdrv_is_inserted(bs). bdrv_is_inserted(bs) implies bs->drv. Drop the redundant test. Signed-off-by: Markus Armbruster Signed-off-by: Kevin Wolf --- diff --git a/block.c b/block.c index 2158f83fe4..487a6a954a 100644 --- a/block.c +++ b/block.c @@ -1753,8 +1753,7 @@ void bdrv_flush_all(void) BlockDriverState *bs; QTAILQ_FOREACH(bs, &bdrv_states, list) { - if (bs->drv && !bdrv_is_read_only(bs) && - (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) { + if (!bdrv_is_read_only(bs) && bdrv_is_inserted(bs)) { bdrv_flush(bs); } }