From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56700) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPu1Y-0007Kp-8Y for qemu-devel@nongnu.org; Mon, 23 Feb 2015 09:30:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPu1S-0003bH-0N for qemu-devel@nongnu.org; Mon, 23 Feb 2015 09:30:16 -0500 Received: from mx-v6.kamp.de ([2a02:248:0:51::16]:41750 helo=mx01.kamp.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPu1R-0003Yx-MP for qemu-devel@nongnu.org; Mon, 23 Feb 2015 09:30:09 -0500 From: Peter Lieven Date: Mon, 23 Feb 2015 15:27:37 +0100 Message-Id: <1424701661-21241-2-git-send-email-pl@kamp.de> In-Reply-To: <1424701661-21241-1-git-send-email-pl@kamp.de> References: <1424701661-21241-1-git-send-email-pl@kamp.de> Subject: [Qemu-devel] [PATCH 1/5] block/vpc: optimize vpc_co_get_block_status List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, carnold@suse.com, jcody@redhat.com, Peter Lieven , mreitz@redhat.com, stefanha@redhat.com *pnum can't be greater than s->block_size / BDRV_SECTOR_SIZE for allocated sectors since there is always a bitmap in between. Signed-off-by: Peter Lieven --- block/vpc.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/block/vpc.c b/block/vpc.c index 1533b6a..326c2bb 100644 --- a/block/vpc.c +++ b/block/vpc.c @@ -602,7 +602,7 @@ static int64_t coroutine_fn vpc_co_get_block_status(BlockDriverState *bs, { BDRVVPCState *s = bs->opaque; VHDFooter *footer = (VHDFooter*) s->footer_buf; - int64_t start, offset, next; + int64_t start, offset; bool allocated; int n; @@ -626,20 +626,17 @@ static int64_t coroutine_fn vpc_co_get_block_status(BlockDriverState *bs, *pnum += n; sector_num += n; nb_sectors -= n; - next = start + (*pnum * BDRV_SECTOR_SIZE); + if (allocated) { + return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start; + } if (nb_sectors == 0) { break; } - offset = get_sector_offset(bs, sector_num, 0); - } while ((allocated && offset == next) || (!allocated && offset == -1)); + } while (offset == -1); - if (allocated) { - return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start; - } else { - return 0; - } + return 0; } /* -- 1.7.9.5