summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2011-08-03 15:24:41 +0300
committerMichael S. Tsirkin <mst@redhat.com>2011-08-03 18:00:53 +0300
commitcb4b4fde82b064472c13fb9d983ca36a70e560aa (patch)
tree6209962580fb36edd2696fe8faa3df0314c5ef60 /hw
parent43e86c8f5b6d9f6279e20dede4e1f7829bdc43b7 (diff)
downloadqemu-cb4b4fde82b064472c13fb9d983ca36a70e560aa.tar.gz
vhost: remove an incorrect assert
The 'to' can go negative when the first region gets removed (it gets incremented by to 0 immediately afterward), which makes the assertion fail. Nothing breaks if to < 0 here so just remove the assert. Tested-by: David Ahern <daahern@cisco.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/vhost.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/vhost.c b/hw/vhost.c
index c3d88214fe..19e72555c4 100644
--- a/hw/vhost.c
+++ b/hw/vhost.c
@@ -120,7 +120,6 @@ static void vhost_dev_unassign_memory(struct vhost_dev *dev,
if (start_addr <= reg->guest_phys_addr && memlast >= reglast) {
--dev->mem->nregions;
--to;
- assert(to >= 0);
++overlap_middle;
continue;
}