[PATCH 5/5] f2fs: clean up f2fs_ioc_write_checkpoint

From: Chao Yu
Date: Thu Dec 24 2015 - 05:12:18 EST


Use f2fs_sync_fs to clean up codes in f2fs_ioc_write_checkpoint.

Signed-off-by: Chao Yu <chao2.yu@xxxxxxxxxxx>
---
fs/f2fs/file.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 91997a5..b75037b 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -1619,7 +1619,6 @@ static int f2fs_ioc_write_checkpoint(struct file *filp, unsigned long arg)
{
struct inode *inode = file_inode(filp);
struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
- struct cp_control cpc;
int err;
int flush_data;

@@ -1638,13 +1637,7 @@ static int f2fs_ioc_write_checkpoint(struct file *filp, unsigned long arg)
return err;
}

- cpc.reason = __get_cp_reason(sbi);
-
- mutex_lock(&sbi->gc_mutex);
- err = write_checkpoint(sbi, &cpc);
- mutex_unlock(&sbi->gc_mutex);
-
- return err;
+ return f2fs_sync_fs(sbi->sb, 1);
}

static int f2fs_defragment_range(struct f2fs_sb_info *sbi,
--
2.6.3


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/