Searched refs:next_zero_bit (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/mm/ |
D | cma.c | 383 unsigned long next_zero_bit, next_set_bit, nr_zero; in cma_debug_show_areas() local 391 next_zero_bit = find_next_zero_bit(cma->bitmap, nbits, start); in cma_debug_show_areas() 392 if (next_zero_bit >= nbits) in cma_debug_show_areas() 394 next_set_bit = find_next_bit(cma->bitmap, nbits, next_zero_bit); in cma_debug_show_areas() 395 nr_zero = next_set_bit - next_zero_bit; in cma_debug_show_areas() 398 next_zero_bit); in cma_debug_show_areas() 400 start = next_zero_bit + nr_zero; in cma_debug_show_areas()
|
/linux-6.12.1/fs/ext4/ |
D | balloc.c | 314 ext4_grpblk_t next_zero_bit; in ext4_valid_block_bitmap_padding() local 321 next_zero_bit = ext4_find_next_zero_bit(bh->b_data, bitmap_size, offset); in ext4_valid_block_bitmap_padding() 323 return (next_zero_bit < bitmap_size ? next_zero_bit : 0); in ext4_valid_block_bitmap_padding() 351 ext4_grpblk_t next_zero_bit; in ext4_valid_block_bitmap() local 389 next_zero_bit = ext4_find_next_zero_bit(bh->b_data, in ext4_valid_block_bitmap() 392 if (next_zero_bit < in ext4_valid_block_bitmap()
|
/linux-6.12.1/fs/ext2/ |
D | balloc.c | 77 ext2_grpblk_t next_zero_bit; in ext2_valid_block_bitmap() local 107 next_zero_bit = ext2_find_next_zero_bit(bh->b_data, in ext2_valid_block_bitmap() 110 if (next_zero_bit >= offset + EXT2_SB(sb)->s_itb_per_group) in ext2_valid_block_bitmap()
|
/linux-6.12.1/fs/reiserfs/ |
D | journal.c | 460 b_blocknr_t * next_zero_bit) in reiserfs_in_journal() argument 467 *next_zero_bit = 0; /* always start this at zero. */ in reiserfs_in_journal() 484 *next_zero_bit = in reiserfs_in_journal()
|