aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/gc.c
diff options
context:
space:
mode:
authorSheng Yong <shengyong1@huawei.com>2016-09-29 18:37:31 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2016-09-30 17:34:37 -0700
commit3fa565039e3338f60d7e7a8e818835dabdea764b (patch)
tree8ca71e5e4845525ab9f81e3f9657bcbd1a4d9470 /fs/f2fs/gc.c
parentf2fs: remove redundant io plug (diff)
downloadlinux-dev-3fa565039e3338f60d7e7a8e818835dabdea764b.tar.xz
linux-dev-3fa565039e3338f60d7e7a8e818835dabdea764b.zip
f2fs: remove dead variable
Signed-off-by: Sheng Yong <shengyong1@huawei.com> Acked-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/gc.c')
-rw-r--r--fs/f2fs/gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index c9b8a67671f1..93985c64d8a8 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -275,7 +275,7 @@ static int get_victim_by_default(struct f2fs_sb_info *sbi,
{
struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
struct victim_sel_policy p;
- unsigned int secno, max_cost, last_victim;
+ unsigned int secno, last_victim;
unsigned int last_segment = MAIN_SEGS(sbi);
unsigned int nsearched = 0;
@@ -285,7 +285,7 @@ static int get_victim_by_default(struct f2fs_sb_info *sbi,
select_policy(sbi, gc_type, type, &p);
p.min_segno = NULL_SEGNO;
- p.min_cost = max_cost = get_max_cost(sbi, &p);
+ p.min_cost = get_max_cost(sbi, &p);
if (p.max_search == 0)
goto out;