From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34605) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVdrn-0008TN-0K for qemu-devel@nongnu.org; Wed, 11 Mar 2015 06:28:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YVdrf-0003w0-30 for qemu-devel@nongnu.org; Wed, 11 Mar 2015 06:27:54 -0400 Received: from mailhub.sw.ru ([195.214.232.25]:13761 helo=relay.sw.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVdre-0003u5-IS for qemu-devel@nongnu.org; Wed, 11 Mar 2015 06:27:46 -0400 From: "Denis V. Lunev" Date: Wed, 11 Mar 2015 13:28:17 +0300 Message-Id: <1426069701-1405-24-git-send-email-den@openvz.org> In-Reply-To: <1426069701-1405-1-git-send-email-den@openvz.org> References: <1426069701-1405-1-git-send-email-den@openvz.org> Subject: [Qemu-devel] [PATCH 23/27] block/parallels: create bat_entry_off helper List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , "Denis V. Lunev" , qemu-devel@nongnu.org, Stefan Hajnoczi calculate offset of the BAT entry in the image file. Signed-off-by: Denis V. Lunev Reviewed-by: Roman Kagan CC: Kevin Wolf CC: Stefan Hajnoczi --- block/parallels.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/block/parallels.c b/block/parallels.c index 0f255fe..f0518be 100644 --- a/block/parallels.c +++ b/block/parallels.c @@ -76,6 +76,11 @@ static int64_t bat2sect(BDRVParallelsState *s, uint32_t idx) return (uint64_t)le32_to_cpu(s->bat_bitmap[idx]) * s->off_multiplier; } +static uint32_t bat_entry_off(uint32_t idx) +{ + return sizeof(ParallelsHeader) + sizeof(uint32_t) * idx; +} + static int64_t seek_to_sector(BDRVParallelsState *s, int64_t sector_num) { uint32_t index, offset; @@ -147,9 +152,8 @@ static int64_t allocate_cluster(BlockDriverState *bs, int64_t sector_num) bdrv_truncate(bs->file, (pos + s->tracks) << BDRV_SECTOR_BITS); s->bat_bitmap[idx] = cpu_to_le32(pos / s->off_multiplier); - ret = bdrv_pwrite(bs->file, - sizeof(ParallelsHeader) + idx * sizeof(s->bat_bitmap[idx]), - s->bat_bitmap + idx, sizeof(s->bat_bitmap[idx])); + ret = bdrv_pwrite(bs->file, bat_entry_off(idx), s->bat_bitmap + idx, + sizeof(s->bat_bitmap[idx])); if (ret < 0) { return ret; } @@ -388,8 +392,7 @@ static int parallels_create(const char *filename, QemuOpts *opts, Error **errp) } bat_entries = DIV_ROUND_UP(total_size, cl_size); - bat_sectors = DIV_ROUND_UP(bat_entries * sizeof(uint32_t) + - sizeof(ParallelsHeader), cl_size); + bat_sectors = DIV_ROUND_UP(bat_entry_off(bat_entries), cl_size); bat_sectors = (bat_sectors * cl_size) >> BDRV_SECTOR_BITS; memset(&header, 0, sizeof(header)); @@ -501,7 +504,7 @@ static int parallels_open(BlockDriverState *bs, QDict *options, int flags, goto fail; } - size = sizeof(ParallelsHeader) + sizeof(uint32_t) * s->bat_size; + size = bat_entry_off(s->bat_size); s->header_size = ROUND_UP(size, bdrv_opt_mem_align(bs->file)); s->header = qemu_try_blockalign(bs->file, s->header_size); if (s->header == NULL) { -- 1.9.1