diff options
author | Jan Kara <jack@suse.cz> | 2015-02-11 01:09:07 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 01:30:29 +0300 |
commit | d9510a20f81467b48cd005e86e17b5288990bc71 (patch) | |
tree | a5d1c5fc077df19fc1c4ab122483fc5d33478429 /fs | |
parent | 1dfeb768475dfded66bba03a1744c2e8141d3429 (diff) | |
download | linux-d9510a20f81467b48cd005e86e17b5288990bc71.tar.xz |
ocfs2: remove pointless assignment from ocfs2_calc_refcount_meta_credits()
The assigned value is never used.
Coverity-id 1226847.
Signed-off-by: Jan Kara <jack@suse.cz>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/refcounttree.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c index d81f6e2a97f5..ee541f92dab4 100644 --- a/fs/ocfs2/refcounttree.c +++ b/fs/ocfs2/refcounttree.c @@ -2428,8 +2428,6 @@ static int ocfs2_calc_refcount_meta_credits(struct super_block *sb, get_bh(prev_bh); } - rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data; - trace_ocfs2_calc_refcount_meta_credits_iterate( recs_add, (unsigned long long)cpos, clusters, (unsigned long long)le64_to_cpu(rec.r_cpos), |