提交 4c355d53 编写于 作者: Z Zhi Yong Wu 提交者: Kevin Wolf

block: add the support to drain throttled requests

Signed-off-by: NZhi Yong Wu <wuzhy@linux.vnet.ibm.com>
[ Iterate until all block devices have processed all requests,
  add comments. - Paolo ]
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: NKevin Wolf <kwolf@redhat.com>
上级 1b3e76eb
...@@ -906,12 +906,31 @@ void bdrv_close_all(void) ...@@ -906,12 +906,31 @@ void bdrv_close_all(void)
* *
* This function does not flush data to disk, use bdrv_flush_all() for that * This function does not flush data to disk, use bdrv_flush_all() for that
* after calling this function. * after calling this function.
*
* Note that completion of an asynchronous I/O operation can trigger any
* number of other I/O operations on other devices---for example a coroutine
* can be arbitrarily complex and a constant flow of I/O can come until the
* coroutine is complete. Because of this, it is not possible to have a
* function to drain a single device's I/O queue.
*/ */
void bdrv_drain_all(void) void bdrv_drain_all(void)
{ {
BlockDriverState *bs; BlockDriverState *bs;
bool busy;
qemu_aio_flush(); do {
busy = qemu_aio_wait();
/* FIXME: We do not have timer support here, so this is effectively
* a busy wait.
*/
QTAILQ_FOREACH(bs, &bdrv_states, list) {
if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
qemu_co_queue_restart_all(&bs->throttled_reqs);
busy = true;
}
}
} while (busy);
/* If requests are still pending there is a bug somewhere */ /* If requests are still pending there is a bug somewhere */
QTAILQ_FOREACH(bs, &bdrv_states, list) { QTAILQ_FOREACH(bs, &bdrv_states, list) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册