From 0c600ce2a7a419c7247b2ac63327dea5daa3d5a2 Mon Sep 17 00:00:00 2001 From: Jason Wang Date: Sat, 27 Nov 2010 22:05:07 +0800 Subject: [PATCH] vhost: Fix address calculation in vhost_dev_sync_region() We still need advance address even we find there's no dirty pages in current chunk. Signed-off-by: Jason Wang Signed-off-by: Michael S. Tsirkin --- hw/vhost.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/vhost.c b/hw/vhost.c index 8586f66bac..6082da287e 100644 --- a/hw/vhost.c +++ b/hw/vhost.c @@ -37,6 +37,7 @@ static void vhost_dev_sync_region(struct vhost_dev *dev, /* We first check with non-atomic: much cheaper, * and we expect non-dirty to be the common case. */ if (!*from) { + addr += VHOST_LOG_CHUNK; continue; } /* Data must be read atomically. We don't really -- 2.11.4.GIT