aboutsummaryrefslogtreecommitdiffstats
path: root/fs/udf
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-03-10 21:44:31 +0100
committerJan Kara <jack@suse.cz>2015-03-14 07:33:57 +0100
commitf4a45c99ae38d53ebb7f26ba3a05c7edab797ce7 (patch)
tree6f652a3e0f00316775e3d76ab386fdd5a6a2c836 /fs/udf
parentquota: Fix maximum quota limit settings (diff)
downloadlinux-dev-f4a45c99ae38d53ebb7f26ba3a05c7edab797ce7.tar.xz
linux-dev-f4a45c99ae38d53ebb7f26ba3a05c7edab797ce7.zip
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>
Diffstat (limited to 'fs/udf')
-rw-r--r--fs/udf/balloc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c
index 1ba2baaf4367..02948f04da56 100644
--- a/fs/udf/balloc.c
+++ b/fs/udf/balloc.c
@@ -358,7 +358,6 @@ static void udf_table_free_blocks(struct super_block *sb,
struct kernel_lb_addr eloc;
struct extent_position oepos, epos;
int8_t etype;
- int i;
struct udf_inode_info *iinfo;
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) {
- i = -1;
oepos.block = epos.block;
brelse(oepos.bh);
get_bh(epos.bh);