Searched refs:next_zero_bit (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/mm/ |
D | cma.c | 370 unsigned long next_zero_bit, next_set_bit; in cma_debug_show_areas() local 377 next_zero_bit = find_next_zero_bit(cma->bitmap, cma->count, start); in cma_debug_show_areas() 378 if (next_zero_bit >= cma->count) in cma_debug_show_areas() 380 next_set_bit = find_next_bit(cma->bitmap, cma->count, next_zero_bit); in cma_debug_show_areas() 381 nr_zero = next_set_bit - next_zero_bit; in cma_debug_show_areas() 382 pr_cont("%s%u@%lu", nr_total ? "+" : "", nr_zero, next_zero_bit); in cma_debug_show_areas() 384 start = next_zero_bit + nr_zero; in cma_debug_show_areas()
|
/Linux-v4.19/fs/ext4/ |
D | balloc.c | 309 ext4_grpblk_t next_zero_bit; in ext4_valid_block_bitmap() local 347 next_zero_bit = ext4_find_next_zero_bit(bh->b_data, in ext4_valid_block_bitmap() 350 if (next_zero_bit < in ext4_valid_block_bitmap()
|
/Linux-v4.19/fs/ext2/ |
D | balloc.c | 81 ext2_grpblk_t next_zero_bit; in ext2_valid_block_bitmap() local 104 next_zero_bit = ext2_find_next_zero_bit(bh->b_data, in ext2_valid_block_bitmap() 107 if (next_zero_bit >= offset + EXT2_SB(sb)->s_itb_per_group) in ext2_valid_block_bitmap()
|
/Linux-v4.19/fs/reiserfs/ |
D | journal.c | 463 b_blocknr_t * next_zero_bit) in reiserfs_in_journal() argument 471 *next_zero_bit = 0; /* always start this at zero. */ in reiserfs_in_journal() 488 *next_zero_bit = in reiserfs_in_journal()
|