Lines Matching full:found
253 ext4_fsblk_t found; in test_new_blocks_simple() local
260 found = ext4_mb_new_blocks_simple(&ar, &err); in test_new_blocks_simple()
261 KUNIT_ASSERT_EQ_MSG(test, ar.goal, found, in test_new_blocks_simple()
262 "failed to alloc block at goal, expected %llu found %llu", in test_new_blocks_simple()
263 ar.goal, found); in test_new_blocks_simple()
267 found = ext4_mb_new_blocks_simple(&ar, &err); in test_new_blocks_simple()
268 KUNIT_ASSERT_EQ_MSG(test, ar.goal + EXT4_C2B(sbi, 1), found, in test_new_blocks_simple()
269 "failed to alloc block after goal in goal group, expected %llu found %llu", in test_new_blocks_simple()
270 ar.goal + 1, found); in test_new_blocks_simple()
275 found = ext4_mb_new_blocks_simple(&ar, &err); in test_new_blocks_simple()
277 ext4_group_first_block_no(sb, goal_group + 1), found, in test_new_blocks_simple()
278 "failed to alloc block after goal group, expected %llu found %llu", in test_new_blocks_simple()
279 ext4_group_first_block_no(sb, goal_group + 1), found); in test_new_blocks_simple()
285 found = ext4_mb_new_blocks_simple(&ar, &err); in test_new_blocks_simple()
287 ext4_group_first_block_no(sb, 0) + EXT4_C2B(sbi, 1), found, in test_new_blocks_simple()
288 "failed to alloc block before goal group, expected %llu found %llu", in test_new_blocks_simple()
289 ext4_group_first_block_no(sb, 0 + EXT4_C2B(sbi, 1)), found); in test_new_blocks_simple()
295 found = ext4_mb_new_blocks_simple(&ar, &err); in test_new_blocks_simple()