• K
    block: Call .drain_begin only once in bdrv_drain_all_begin() · 2da9b7d4
    Kevin Wolf 提交于
    bdrv_drain_all_begin() used to call the .bdrv_co_drain_begin() driver
    callback inside its polling loop. This means that how many times it got
    called for each node depended on long it had to poll the event loop.
    
    This is obviously not right and results in nodes that stay drained even
    after bdrv_drain_all_end(), which calls .bdrv_co_drain_begin() once per
    node.
    
    Fix bdrv_drain_all_begin() to call the callback only once, too.
    
    Cc: qemu-stable@nongnu.org
    Signed-off-by: NKevin Wolf <kwolf@redhat.com>
    Reviewed-by: NStefan Hajnoczi <stefanha@redhat.com>
    2da9b7d4
io.c 82.0 KB