aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2013-08-07 16:54:14 +0200
committerJan Beulich <jbeulich@suse.com>2013-08-07 16:54:14 +0200
commit5a9f5c558e5636f6c613f8f31b0911656e6af27f (patch)
tree163159848441c78b3b4aef9164de9a94e6d6afce
parentd8668381627899ce46b25582425a5760478c5b51 (diff)
downloadxen-5a9f5c558e5636f6c613f8f31b0911656e6af27f.tar.gz
xen-5a9f5c558e5636f6c613f8f31b0911656e6af27f.tar.bz2
xen-5a9f5c558e5636f6c613f8f31b0911656e6af27f.zip
fix off-by-one mistakes in vm_alloc()
Also add another pair of assertions to catch eventual further cases of incorrect accounting. Signed-off-by: Jan Beulich <jbeulich@suse.com> Reviewed-by Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Keir Fraser <keir@xen.org> master commit: b0e55bd49725c7c0183eb18670997b9e5930adac master date: 2013-08-05 18:40:23 +0200
-rw-r--r--xen/common/vmap.c26
1 files changed, 18 insertions, 8 deletions
diff --git a/xen/common/vmap.c b/xen/common/vmap.c
index 5f92be4f20..783cea3fd8 100644
--- a/xen/common/vmap.c
+++ b/xen/common/vmap.c
@@ -57,8 +57,8 @@ void *vm_alloc(unsigned int nr, unsigned int align)
{
struct page_info *pg;
- ASSERT(!test_bit(vm_low, vm_bitmap));
- for ( start = vm_low; ; )
+ ASSERT(vm_low == vm_top || !test_bit(vm_low, vm_bitmap));
+ for ( start = vm_low; start < vm_top; )
{
bit = find_next_bit(vm_bitmap, vm_top, start + 1);
if ( bit > vm_top )
@@ -68,12 +68,18 @@ void *vm_alloc(unsigned int nr, unsigned int align)
* corresponding page a guard one.
*/
start = (start + align) & ~(align - 1);
- if ( start + nr <= bit )
- break;
- start = bit < vm_top ?
- find_next_zero_bit(vm_bitmap, vm_top, bit + 1) : bit;
- if ( start >= vm_top )
- break;
+ if ( bit < vm_top )
+ {
+ if ( start + nr < bit )
+ break;
+ start = find_next_zero_bit(vm_bitmap, vm_top, bit + 1);
+ }
+ else
+ {
+ if ( start + nr <= bit )
+ break;
+ start = bit;
+ }
}
if ( start < vm_top )
@@ -115,6 +121,10 @@ void *vm_alloc(unsigned int nr, unsigned int align)
for ( bit = start; bit < start + nr; ++bit )
__set_bit(bit, vm_bitmap);
+ if ( bit < vm_top )
+ ASSERT(!test_bit(bit, vm_bitmap));
+ else
+ ASSERT(bit == vm_top);
if ( start <= vm_low + 2 )
vm_low = bit;
spin_unlock(&vm_lock);