mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
udf: remove else after return in __load_block_bitmap()
else after return is not needed. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
f4a45c99ae
commit
6fbaad879a
@ -63,15 +63,14 @@ static int __load_block_bitmap(struct super_block *sb,
|
||||
block_group, nr_groups);
|
||||
}
|
||||
|
||||
if (bitmap->s_block_bitmap[block_group]) {
|
||||
if (bitmap->s_block_bitmap[block_group])
|
||||
return block_group;
|
||||
} else {
|
||||
retval = read_block_bitmap(sb, bitmap, block_group,
|
||||
block_group);
|
||||
if (retval < 0)
|
||||
return retval;
|
||||
return block_group;
|
||||
}
|
||||
|
||||
retval = read_block_bitmap(sb, bitmap, block_group, block_group);
|
||||
if (retval < 0)
|
||||
return retval;
|
||||
|
||||
return block_group;
|
||||
}
|
||||
|
||||
static inline int load_block_bitmap(struct super_block *sb,
|
||||
|
Loading…
Reference in New Issue
Block a user