Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1297807 > unrolled thread

[PATCH 5/5] f2fs: clean up f2fs_ioc_write_checkpoint

Started byChao Yu <chao2.yu@samsung.com>
First post2015-12-24 11:20 +0100
Last post2015-12-24 11:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 5/5] f2fs: clean up f2fs_ioc_write_checkpoint Chao Yu <chao2.yu@samsung.com> - 2015-12-24 11:20 +0100

#1297807 — [PATCH 5/5] f2fs: clean up f2fs_ioc_write_checkpoint

FromChao Yu <chao2.yu@samsung.com>
Date2015-12-24 11:20 +0100
Subject[PATCH 5/5] f2fs: clean up f2fs_ioc_write_checkpoint
Message-ID<qJba2-5to-15@gated-at.bofh.it>
Use f2fs_sync_fs to clean up codes in f2fs_ioc_write_checkpoint.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
---
 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@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web