]> git.proxmox.com Git - qemu.git/commitdiff
Xen, mapcache: Fix the compute of the size of bucket.
authorAnthony PERARD <anthony.perard@citrix.com>
Fri, 13 Apr 2012 17:18:56 +0000 (17:18 +0000)
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>
Fri, 13 Apr 2012 17:34:50 +0000 (17:34 +0000)
Because the size of a mapping is wrong when there is an offset and a
size >= bucket_size.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
xen-mapcache.c

index a45647936377d5477894353b9639118a022a3b07..75ac313f283278fcb55f49fcced1a38f4fedfd7e 100644 (file)
@@ -216,12 +216,14 @@ tryagain:
     }
 
     /* size is always a multiple of MCACHE_BUCKET_SIZE */
-    if ((address_offset + (__size % MCACHE_BUCKET_SIZE)) > MCACHE_BUCKET_SIZE)
-        __size += MCACHE_BUCKET_SIZE;
-    if (__size % MCACHE_BUCKET_SIZE)
-        __size += MCACHE_BUCKET_SIZE - (__size % MCACHE_BUCKET_SIZE);
-    if (!__size)
+    if (size) {
+        __size = size + address_offset;
+        if (__size % MCACHE_BUCKET_SIZE) {
+            __size += MCACHE_BUCKET_SIZE - (__size % MCACHE_BUCKET_SIZE);
+        }
+    } else {
         __size = MCACHE_BUCKET_SIZE;
+    }
 
     entry = &mapcache->entry[address_index % mapcache->nr_buckets];