[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v4 9/9] qed: Implement .bdrv_drain
From: |
Fam Zheng |
Subject: |
[Qemu-devel] [PATCH v4 9/9] qed: Implement .bdrv_drain |
Date: |
Mon, 9 Nov 2015 18:16:54 +0800 |
The "need_check_timer" is used to clear the "NEED_CHECK" flag in the
image header after a grace period once metadata update has finished. In
compliance to the bdrv_drain semantics we should make sure it remains
deleted once .bdrv_drain is called.
We cannot reuse qed_need_check_timer_cb because here it doesn't satisfy
the assertion. Do the "plug" and "flush" calls manually.
Signed-off-by: Fam Zheng <address@hidden>
Reviewed-by: Kevin Wolf <address@hidden>
---
block/qed.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/block/qed.c b/block/qed.c
index 5ea05d4..9b88895 100644
--- a/block/qed.c
+++ b/block/qed.c
@@ -375,6 +375,18 @@ static void bdrv_qed_attach_aio_context(BlockDriverState
*bs,
}
}
+static void bdrv_qed_drain(BlockDriverState *bs)
+{
+ BDRVQEDState *s = bs->opaque;
+
+ /* Cancel timer and start doing I/O that were meant to happen as if it
+ * fired, that way we get bdrv_drain() taking care of the ongoing requests
+ * correctly. */
+ qed_cancel_need_check_timer(s);
+ qed_plug_allocating_write_reqs(s);
+ bdrv_aio_flush(s->bs, qed_clear_need_check, s);
+}
+
static int bdrv_qed_open(BlockDriverState *bs, QDict *options, int flags,
Error **errp)
{
@@ -1676,6 +1688,7 @@ static BlockDriver bdrv_qed = {
.bdrv_check = bdrv_qed_check,
.bdrv_detach_aio_context = bdrv_qed_detach_aio_context,
.bdrv_attach_aio_context = bdrv_qed_attach_aio_context,
+ .bdrv_drain = bdrv_qed_drain,
};
static void bdrv_qed_init(void)
--
2.4.3
- [Qemu-devel] [PATCH v4 0/9] block: Fixes for bdrv_drain, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 1/9] block: Add more types for tracked request, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 2/9] block: Track flush requests, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 3/9] block: Track discard requests, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 4/9] iscsi: Emulate commands in iscsi_aio_ioctl as iscsi_ioctl, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 6/9] block: Emulate bdrv_ioctl with bdrv_aio_ioctl and track both, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 5/9] block: Add ioctl parameter fields to BlockRequest, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 7/9] block: Drop BlockDriver.bdrv_ioctl, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 8/9] block: Introduce BlockDriver.bdrv_drain callback, Fam Zheng, 2015/11/09
- [Qemu-devel] [PATCH v4 9/9] qed: Implement .bdrv_drain,
Fam Zheng <=
- Re: [Qemu-devel] [PATCH v4 0/9] block: Fixes for bdrv_drain, Stefan Hajnoczi, 2015/11/09