From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhPDx-00061z-1v for qemu-devel@nongnu.org; Thu, 23 Oct 2014 16:43:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XhPDo-0002OR-T6 for qemu-devel@nongnu.org; Thu, 23 Oct 2014 16:43:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:4862) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhPDo-0002OE-Jt for qemu-devel@nongnu.org; Thu, 23 Oct 2014 16:43:00 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s9NKgxQS009597 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 23 Oct 2014 16:43:00 -0400 From: Kevin Wolf Date: Thu, 23 Oct 2014 22:42:19 +0200 Message-Id: <1414096959-14682-13-git-send-email-kwolf@redhat.com> In-Reply-To: <1414096959-14682-1-git-send-email-kwolf@redhat.com> References: <1414096959-14682-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 12/32] qcow2: Use int64_t for in-memory reftable size List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com From: Max Reitz Use int64_t for the entry count of the in-memory refcount table throughout the check functions. Signed-off-by: Max Reitz Signed-off-by: Kevin Wolf --- block/qcow2-refcount.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c index 24f297f..a3f4d47 100644 --- a/block/qcow2-refcount.c +++ b/block/qcow2-refcount.c @@ -1084,7 +1084,7 @@ fail: static void inc_refcounts(BlockDriverState *bs, BdrvCheckResult *res, uint16_t *refcount_table, - int refcount_table_size, + int64_t refcount_table_size, int64_t offset, int64_t size) { BDRVQcowState *s = bs->opaque; @@ -1127,7 +1127,7 @@ enum { * error occurred. */ static int check_refcounts_l2(BlockDriverState *bs, BdrvCheckResult *res, - uint16_t *refcount_table, int refcount_table_size, int64_t l2_offset, + uint16_t *refcount_table, int64_t refcount_table_size, int64_t l2_offset, int flags) { BDRVQcowState *s = bs->opaque; @@ -1237,7 +1237,7 @@ fail: static int check_refcounts_l1(BlockDriverState *bs, BdrvCheckResult *res, uint16_t *refcount_table, - int refcount_table_size, + int64_t refcount_table_size, int64_t l1_table_offset, int l1_size, int flags) { -- 1.8.3.1