Lines Matching refs:bitmap
271 static int check_eb_bitmap(unsigned long *bitmap, struct extent_buffer *eb, in check_eb_bitmap() argument
279 bit = !!test_bit(i, bitmap); in check_eb_bitmap()
296 static int __test_eb_bitmaps(unsigned long *bitmap, struct extent_buffer *eb, in __test_eb_bitmaps() argument
303 memset(bitmap, 0, len); in __test_eb_bitmaps()
305 if (memcmp_extent_buffer(eb, bitmap, 0, len) != 0) { in __test_eb_bitmaps()
310 bitmap_set(bitmap, 0, len * BITS_PER_BYTE); in __test_eb_bitmaps()
312 ret = check_eb_bitmap(bitmap, eb, len); in __test_eb_bitmaps()
318 bitmap_clear(bitmap, 0, len * BITS_PER_BYTE); in __test_eb_bitmaps()
320 ret = check_eb_bitmap(bitmap, eb, len); in __test_eb_bitmaps()
328 bitmap_set(bitmap, in __test_eb_bitmaps()
333 ret = check_eb_bitmap(bitmap, eb, len); in __test_eb_bitmaps()
339 bitmap_set(bitmap, 0, len * BITS_PER_BYTE); in __test_eb_bitmaps()
340 bitmap_clear(bitmap, in __test_eb_bitmaps()
346 ret = check_eb_bitmap(bitmap, eb, len); in __test_eb_bitmaps()
358 bitmap_clear(bitmap, 0, len * BITS_PER_BYTE); in __test_eb_bitmaps()
364 bitmap_set(bitmap, i * 32 + j, 1); in __test_eb_bitmaps()
370 ret = check_eb_bitmap(bitmap, eb, len); in __test_eb_bitmaps()
383 unsigned long *bitmap = NULL; in test_eb_bitmaps() local
402 bitmap = kmalloc(len, GFP_KERNEL); in test_eb_bitmaps()
403 if (!bitmap) { in test_eb_bitmaps()
416 ret = __test_eb_bitmaps(bitmap, eb, len); in test_eb_bitmaps()
429 ret = __test_eb_bitmaps(bitmap, eb, len); in test_eb_bitmaps()
432 kfree(bitmap); in test_eb_bitmaps()