f2fs: introduce __wait_one_discard_bio
authorChao Yu <yuchao0@huawei.com>
Mon, 5 Jun 2017 10:29:06 +0000 (18:29 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Tue, 4 Jul 2017 09:11:36 +0000 (02:11 -0700)
In order to avoid copied codes.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c

index a739803..0fa717a 100644 (file)
@@ -995,6 +995,20 @@ out:
        mutex_unlock(&dcc->cmd_lock);
 }
 
+static void __wait_one_discard_bio(struct f2fs_sb_info *sbi,
+                                                       struct discard_cmd *dc)
+{
+       struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
+
+       wait_for_completion_io(&dc->wait);
+       mutex_lock(&dcc->cmd_lock);
+       f2fs_bug_on(sbi, dc->state != D_DONE);
+       dc->ref--;
+       if (!dc->ref)
+               __remove_discard_cmd(sbi, dc);
+       mutex_unlock(&dcc->cmd_lock);
+}
+
 static void __wait_discard_cmd(struct f2fs_sb_info *sbi, bool wait_cond)
 {
        struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info;
@@ -1019,13 +1033,7 @@ next:
        mutex_unlock(&dcc->cmd_lock);
 
        if (need_wait) {
-               wait_for_completion_io(&dc->wait);
-               mutex_lock(&dcc->cmd_lock);
-               f2fs_bug_on(sbi, dc->state != D_DONE);
-               dc->ref--;
-               if (!dc->ref)
-                       __remove_discard_cmd(sbi, dc);
-               mutex_unlock(&dcc->cmd_lock);
+               __wait_one_discard_bio(sbi, dc);
                goto next;
        }
 }
@@ -1049,15 +1057,8 @@ void f2fs_wait_discard_bio(struct f2fs_sb_info *sbi, block_t blkaddr)
        }
        mutex_unlock(&dcc->cmd_lock);
 
-       if (need_wait) {
-               wait_for_completion_io(&dc->wait);
-               mutex_lock(&dcc->cmd_lock);
-               f2fs_bug_on(sbi, dc->state != D_DONE);
-               dc->ref--;
-               if (!dc->ref)
-                       __remove_discard_cmd(sbi, dc);
-               mutex_unlock(&dcc->cmd_lock);
-       }
+       if (need_wait)
+               __wait_one_discard_bio(sbi, dc);
 }
 
 /* This comes from f2fs_put_super */