Commit 8037da38 authored by Jan Kara's avatar Jan Kara

udf: Drop load_block_bitmap() wrapper

The wrapper is completely pointless as all the checks are already done
in __load_block_bitmap(). Just drop it and rename __load_block_bitmap().

Link: https://patch.msgid.link/20240617154201.29512-3-jack@suse.czSigned-off-by: default avatarJan Kara <jack@suse.cz>
parent a90d4471
...@@ -73,9 +73,9 @@ static int read_block_bitmap(struct super_block *sb, ...@@ -73,9 +73,9 @@ static int read_block_bitmap(struct super_block *sb,
return 0; return 0;
} }
static int __load_block_bitmap(struct super_block *sb, static int load_block_bitmap(struct super_block *sb,
struct udf_bitmap *bitmap, struct udf_bitmap *bitmap,
unsigned int block_group) unsigned int block_group)
{ {
int retval = 0; int retval = 0;
int nr_groups = bitmap->s_nr_groups; int nr_groups = bitmap->s_nr_groups;
...@@ -102,23 +102,6 @@ static int __load_block_bitmap(struct super_block *sb, ...@@ -102,23 +102,6 @@ static int __load_block_bitmap(struct super_block *sb,
return block_group; return block_group;
} }
static inline int load_block_bitmap(struct super_block *sb,
struct udf_bitmap *bitmap,
unsigned int block_group)
{
int slot;
slot = __load_block_bitmap(sb, bitmap, block_group);
if (slot < 0)
return slot;
if (!bitmap->s_block_bitmap[slot])
return -EIO;
return slot;
}
static void udf_add_free_space(struct super_block *sb, u16 partition, u32 cnt) static void udf_add_free_space(struct super_block *sb, u16 partition, u32 cnt)
{ {
struct udf_sb_info *sbi = UDF_SB(sb); struct udf_sb_info *sbi = UDF_SB(sb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment