[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-stable] [PATCH 01/10] migration: add missed aio_context_acquire fo
From: |
Denis V. Lunev |
Subject: |
[Qemu-stable] [PATCH 01/10] migration: add missed aio_context_acquire for state writing/reading |
Date: |
Tue, 3 Nov 2015 17:12:04 +0300 |
aio_context should be locked in the similar way as was done in QMP
snapshot creation in the other case there are a lot of possible
troubles if native AIO mode is enabled for disk.
qemu_fopen_bdrv and bdrv_fclose are used in real snapshot operations only
along with block drivers. This change should influence only HMP snapshot
operations.
AioContext lock is reqursive. Thus nested locking should not be a problem.
Signed-off-by: Denis V. Lunev <address@hidden>
Reviewed-by: Paolo Bonzini <address@hidden>
Reviewed-by: Juan Quintela <address@hidden>
CC: Stefan Hajnoczi <address@hidden>
CC: Amit Shah <address@hidden>
---
migration/savevm.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/migration/savevm.c b/migration/savevm.c
index dbcc39a..1653f56 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -153,7 +153,11 @@ static ssize_t block_get_buffer(void *opaque, uint8_t
*buf, int64_t pos,
static int bdrv_fclose(void *opaque)
{
- return bdrv_flush(opaque);
+ BlockDriverState *bs = (BlockDriverState *)opaque;
+ int ret = bdrv_flush(bs);
+
+ aio_context_release(bdrv_get_aio_context(bs));
+ return ret;
}
static const QEMUFileOps bdrv_read_ops = {
@@ -169,10 +173,18 @@ static const QEMUFileOps bdrv_write_ops = {
static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
{
+ QEMUFile *file;
+
if (is_writable) {
- return qemu_fopen_ops(bs, &bdrv_write_ops);
+ file = qemu_fopen_ops(bs, &bdrv_write_ops);
+ } else {
+ file = qemu_fopen_ops(bs, &bdrv_read_ops);
+ }
+
+ if (file != NULL) {
+ aio_context_acquire(bdrv_get_aio_context(bs));
}
- return qemu_fopen_ops(bs, &bdrv_read_ops);
+ return file;
}
--
2.5.0
- [Qemu-stable] [PATCH QEMU 2.5 v4 0/10] dataplane snapshot fixes + aio_poll fixes, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 01/10] migration: add missed aio_context_acquire for state writing/reading,
Denis V. Lunev <=
- [Qemu-stable] [PATCH 02/10] block: add missed aio_context_acquire around bdrv_set_aio_context, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 03/10] migration: added missed aio_context_acquire around bdrv_snapshot_delete, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 05/10] block: guard bdrv_drain in bdrv_close with aio_context_acquire, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 04/10] blockdev: acquire AioContext in hmp_commit(), Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 07/10] block: call aio_context_acquire in qemu_img/nbd/io, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 08/10] fifolock: create rfifolock_is_owner helper, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 06/10] io: guard aio_poll with aio_context_acquire, Denis V. Lunev, 2015/11/03
- [Qemu-stable] [PATCH 09/10] aio_context: create aio_context_is_owner helper, Denis V. Lunev, 2015/11/03