aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChao Yu <[email protected]>2015-12-24 18:11:32 +0800
committerJaegeuk Kim <[email protected]>2015-12-30 10:14:18 -0800
commite96248bb45d42375b23e1c083ec5a55151503e82 (patch)
tree3d3fb8a68109e7f66ac3a02388a64932a3090237
parent179448bfe4cd201e98e728391c6b01b25c849fe8 (diff)
f2fs: clean up f2fs_ioc_write_checkpoint
Use f2fs_sync_fs to clean up codes in f2fs_ioc_write_checkpoint. Signed-off-by: Chao Yu <[email protected]> [Jaegeuk Kim: remove unused err variable] Signed-off-by: Jaegeuk Kim <[email protected]>
-rw-r--r--fs/f2fs/file.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 2d87a3cf6768..91f576a7903c 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -1619,8 +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;
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
@@ -1628,13 +1626,7 @@ static int f2fs_ioc_write_checkpoint(struct file *filp, unsigned long arg)
if (f2fs_readonly(sbi->sb))
return -EROFS;
- 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,