[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH 04/10] vpc: make it thread-safe
From: |
Paolo Bonzini |
Subject: |
[Qemu-block] [PATCH 04/10] vpc: make it thread-safe |
Date: |
Tue, 27 Jun 2017 17:22:42 +0200 |
Reviewed-by: Eric Blake <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
---
block/vpc.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/block/vpc.c b/block/vpc.c
index 4240ba9d1c..0ff686540a 100644
--- a/block/vpc.c
+++ b/block/vpc.c
@@ -496,12 +496,6 @@ static inline int64_t get_image_offset(BlockDriverState
*bs, uint64_t offset,
return block_offset;
}
-static inline int64_t get_sector_offset(BlockDriverState *bs,
- int64_t sector_num, bool write)
-{
- return get_image_offset(bs, sector_num * BDRV_SECTOR_SIZE, write);
-}
-
/*
* Writes the footer to the end of the image file. This is needed when the
* file grows as it overwrites the old footer
@@ -696,6 +690,7 @@ static int64_t coroutine_fn
vpc_co_get_block_status(BlockDriverState *bs,
VHDFooter *footer = (VHDFooter*) s->footer_buf;
int64_t start, offset;
bool allocated;
+ int64_t ret;
int n;
if (be32_to_cpu(footer->type) == VHD_FIXED) {
@@ -705,10 +700,13 @@ static int64_t coroutine_fn
vpc_co_get_block_status(BlockDriverState *bs,
(sector_num << BDRV_SECTOR_BITS);
}
- offset = get_sector_offset(bs, sector_num, 0);
+ qemu_co_mutex_lock(&s->lock);
+
+ offset = get_image_offset(bs, sector_num << BDRV_SECTOR_BITS, false);
start = offset;
allocated = (offset != -1);
*pnum = 0;
+ ret = 0;
do {
/* All sectors in a block are contiguous (without using the bitmap) */
@@ -723,15 +721,17 @@ static int64_t coroutine_fn
vpc_co_get_block_status(BlockDriverState *bs,
* sectors since there is always a bitmap in between. */
if (allocated) {
*file = bs->file->bs;
- return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
+ ret = BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
+ break;
}
if (nb_sectors == 0) {
break;
}
- offset = get_sector_offset(bs, sector_num, 0);
+ offset = get_image_offset(bs, sector_num << BDRV_SECTOR_BITS, false);
} while (offset == -1);
- return 0;
+ qemu_co_mutex_unlock(&s->lock);
+ return ret;
}
/*
--
2.13.0
- [Qemu-block] [PATCH 00/10] Block layer thread-safety, part 2, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 07/10] block: invoke .bdrv_drain callback in coroutine context and from AioContext, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 09/10] sheepdog: add queue_lock, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 10/10] ssh: support I/O from any AioContext, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 04/10] vpc: make it thread-safe,
Paolo Bonzini <=
- [Qemu-block] [PATCH 06/10] qed: move tail of qed_aio_write_main to qed_aio_write_{cow, alloc}, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 05/10] vvfat: make it thread-safe, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 08/10] qed: protect table cache with CoMutex, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 01/10] qcow2: call CoQueue APIs under CoMutex, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 02/10] coroutine-lock: add qemu_co_rwlock_downgrade and qemu_co_rwlock_upgrade, Paolo Bonzini, 2017/06/27
- [Qemu-block] [PATCH 03/10] vdi: make it thread-safe, Paolo Bonzini, 2017/06/27
- Re: [Qemu-block] [PATCH 00/10] Block layer thread-safety, part 2, Paolo Bonzini, 2017/06/27
- Re: [Qemu-block] [Qemu-devel] [PATCH 00/10] Block layer thread-safety, part 2, no-reply, 2017/06/28