Lines Matching full:goal
414 /* get block at goal */ in test_new_blocks_simple()
415 ar.goal = ext4_group_first_block_no(sb, goal_group); in test_new_blocks_simple()
417 KUNIT_ASSERT_EQ_MSG(test, ar.goal, found, in test_new_blocks_simple()
418 "failed to alloc block at goal, expected %llu found %llu", in test_new_blocks_simple()
419 ar.goal, found); in test_new_blocks_simple()
421 /* get block after goal in goal group */ in test_new_blocks_simple()
422 ar.goal = ext4_group_first_block_no(sb, goal_group); in test_new_blocks_simple()
424 KUNIT_ASSERT_EQ_MSG(test, ar.goal + EXT4_C2B(sbi, 1), found, in test_new_blocks_simple()
425 "failed to alloc block after goal in goal group, expected %llu found %llu", in test_new_blocks_simple()
426 ar.goal + 1, found); in test_new_blocks_simple()
428 /* get block after goal group */ in test_new_blocks_simple()
430 ar.goal = ext4_group_first_block_no(sb, goal_group); in test_new_blocks_simple()
434 "failed to alloc block after goal group, expected %llu found %llu", in test_new_blocks_simple()
437 /* get block before goal group */ in test_new_blocks_simple()
440 ar.goal = ext4_group_first_block_no(sb, goal_group); in test_new_blocks_simple()
444 "failed to alloc block before goal group, expected %llu found %llu", in test_new_blocks_simple()
450 ar.goal = ext4_group_first_block_no(sb, goal_group); in test_new_blocks_simple()