Lines Matching refs:blk
39 blk_t blk, b; in ext2fs_check_desc() local
63 blk = fs->group_desc[i].bg_block_bitmap; in ext2fs_check_desc()
64 if (blk < first_block || blk > last_block || in ext2fs_check_desc()
65 ext2fs_test_block_bitmap(bmap, blk)) { in ext2fs_check_desc()
69 ext2fs_mark_block_bitmap(bmap, blk); in ext2fs_check_desc()
74 blk = fs->group_desc[i].bg_inode_bitmap; in ext2fs_check_desc()
75 if (blk < first_block || blk > last_block || in ext2fs_check_desc()
76 ext2fs_test_block_bitmap(bmap, blk)) { in ext2fs_check_desc()
80 ext2fs_mark_block_bitmap(bmap, blk); in ext2fs_check_desc()
85 blk = fs->group_desc[i].bg_inode_table; in ext2fs_check_desc()
86 if (blk < first_block || in ext2fs_check_desc()
87 ((blk + fs->inode_blocks_per_group - 1) > last_block)) { in ext2fs_check_desc()
91 for (j = 0, b = blk; j < fs->inode_blocks_per_group; in ext2fs_check_desc()