From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50480) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciZXH-0006qS-DI for qemu-devel@nongnu.org; Mon, 27 Feb 2017 23:37:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ciZXG-0007Tb-L1 for qemu-devel@nongnu.org; Mon, 27 Feb 2017 23:37:15 -0500 From: Jeff Cody Date: Mon, 27 Feb 2017 23:37:06 -0500 Message-Id: <20170228043707.23121-2-jcody@redhat.com> In-Reply-To: <20170228043707.23121-1-jcody@redhat.com> References: <20170228043707.23121-1-jcody@redhat.com> Subject: [Qemu-devel] [PULL 1/2] block/mirror: fix broken sparseness detection List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: peter.maydell@linaro.org, jcody@redhat.com, qemu-devel@nongnu.org From: John Snow int64_t is in all likelihood the actual scalar type we want. Yep, really. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1219541 Signed-off-by: John Snow Reviewed-by: Jeff Cody Signed-off-by: Jeff Cody --- block/mirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/mirror.c b/block/mirror.c index 3d50857..1b34b36 100644 --- a/block/mirror.c +++ b/block/mirror.c @@ -386,7 +386,7 @@ static uint64_t coroutine_fn mirror_iteration(MirrorBlockJob *s) nb_chunks * sectors_per_chunk); bitmap_set(s->in_flight_bitmap, sector_num / sectors_per_chunk, nb_chunks); while (nb_chunks > 0 && sector_num < end) { - int ret; + int64_t ret; int io_sectors, io_sectors_acct; BlockDriverState *file; enum MirrorMethod { -- 2.9.3