Name

bitmap_release_region — release allocated bitmap region

Synopsis

void bitmap_release_region (unsigned long * bitmap,
 unsigned int pos,
 int order);
 

Arguments

unsigned long * bitmap

array of unsigned longs corresponding to the bitmap

unsigned int pos

beginning of bit region to release

int order

region size (log base 2 of number of bits) to release

Description

This is the complement to __bitmap_find_free_region and releases the found region (by clearing it in the bitmap).

No return value.