udf: remove unused variable in udf_table_free_blocks()
Fix set but not used warning. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
7e08da50cf
commit
f4a45c99ae
1 changed files with 0 additions and 2 deletions
|
@ -358,7 +358,6 @@ static void udf_table_free_blocks(struct super_block *sb,
|
||||||
struct kernel_lb_addr eloc;
|
struct kernel_lb_addr eloc;
|
||||||
struct extent_position oepos, epos;
|
struct extent_position oepos, epos;
|
||||||
int8_t etype;
|
int8_t etype;
|
||||||
int i;
|
|
||||||
struct udf_inode_info *iinfo;
|
struct udf_inode_info *iinfo;
|
||||||
|
|
||||||
mutex_lock(&sbi->s_alloc_mutex);
|
mutex_lock(&sbi->s_alloc_mutex);
|
||||||
|
@ -425,7 +424,6 @@ static void udf_table_free_blocks(struct super_block *sb,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (epos.bh != oepos.bh) {
|
if (epos.bh != oepos.bh) {
|
||||||
i = -1;
|
|
||||||
oepos.block = epos.block;
|
oepos.block = epos.block;
|
||||||
brelse(oepos.bh);
|
brelse(oepos.bh);
|
||||||
get_bh(epos.bh);
|
get_bh(epos.bh);
|
||||||
|
|
Loading…
Add table
Reference in a new issue