f2fs: remove unused values in recover_fsync_data
authorYunlei He <heyunlei@huawei.com>
Tue, 13 Dec 2016 09:23:37 +0000 (17:23 +0800)
committerGreg Kroah-Hartman <gregkh@google.com>
Tue, 3 Oct 2017 13:36:20 +0000 (13:36 +0000)
commit fed24668482e07421b8e746a4886e7725434050a upstream.

This patch remove unused values in function recover_fsync_data

Signed-off-by: Yunlei He <heyunlei@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/recovery.c

index 983c35da6bcea19252a910b63ca3f4e6fbfbc8c0..4a3c48c24c102a056de8433ccf31741f9fccfc7c 100644 (file)
@@ -552,10 +552,8 @@ next:
 
 int recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only)
 {
-       struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_WARM_NODE);
        struct list_head inode_list;
        struct list_head dir_list;
-       block_t blkaddr;
        int err;
        int ret = 0;
        bool need_writecp = false;
@@ -571,8 +569,6 @@ int recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only)
        /* prevent checkpoint */
        mutex_lock(&sbi->cp_mutex);
 
-       blkaddr = NEXT_FREE_BLKADDR(sbi, curseg);
-
        /* step #1: find fsynced inode numbers */
        err = find_fsync_dnodes(sbi, &inode_list);
        if (err || list_empty(&inode_list))