1BITMAP_RELEASE_REGIO(9) Basic Kernel Library Functions BITMAP_RELEASE_REGIO(9)
2
3
4
6 bitmap_release_region - release allocated bitmap region
7
9 void bitmap_release_region(unsigned long * bitmap, int pos, int order);
10
12 bitmap
13 array of unsigned longs corresponding to the bitmap
14
15 pos
16 beginning of bit region to release
17
18 order
19 region size (log base 2 of number of bits) to release
20
22 This is the complement to __bitmap_find_free_region and releases the
23 found region (by clearing it in the bitmap).
24
25 No return value.
26
28Kernel Hackers Manual 3.10 June 2019 BITMAP_RELEASE_REGIO(9)