1
0
Fork 0

ext2: Remove redundant check for finding no group

When best_desc keeps NULL, best_group keeps -1, too. So we can
return best_group directly.

Signed-off-by: Liu Xiang <liu.xiang6@zte.com.cn>
Signed-off-by: Jan Kara <jack@suse.cz>
hifive-unleashed-5.1
Liu Xiang 2019-01-25 22:01:36 +08:00 committed by Jan Kara
parent f068ebd13b
commit 0b7a814c26
1 changed files with 0 additions and 2 deletions

View File

@ -222,8 +222,6 @@ static int find_group_dir(struct super_block *sb, struct inode *parent)
best_desc = desc;
}
}
if (!best_desc)
return -1;
return best_group;
}