bitmap: replace _reg_op(REG_OP_ALLOC) with bitmap_set()
[linux-block.git] / lib / bitmap.c
index a0b02974d898f241a72d9fa0941529854a1d7b04..8ee7d4857179d5f29c31cae476cea6cb257c263d 100644 (file)
@@ -838,9 +838,12 @@ EXPORT_SYMBOL(bitmap_release_region);
  */
 int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order)
 {
+       unsigned int len = BIT(order);
+
        if (!__reg_op(bitmap, pos, order, REG_OP_ISFREE))
                return -EBUSY;
-       return __reg_op(bitmap, pos, order, REG_OP_ALLOC);
+       bitmap_set(bitmap, pos, len);
+       return 0;
 }
 EXPORT_SYMBOL(bitmap_allocate_region);