aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/checkpoint.c
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk.kim@samsung.com>2012-11-28 23:28:09 -0500
committerJaegeuk Kim <jaegeuk.kim@samsung.com>2012-12-10 23:43:42 -0500
commit0a8165d7c2cf1395059db20ab07665baf3758fcd (patch)
tree6036856230364c8301db6798bb442f44e608a098 /fs/f2fs/checkpoint.c
parent25ca923b2a766b9c93b63777ead351137533a623 (diff)
f2fs: adjust kernel coding style
As pointed out by Randy Dunlap, this patch removes all usage of "/**" for comment blocks. Instead, just use "/*". Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r--fs/f2fs/checkpoint.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index 7c18f8efaadc..6ef36c37e2be 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -1,4 +1,4 @@
1/** 1/*
2 * fs/f2fs/checkpoint.c 2 * fs/f2fs/checkpoint.c
3 * 3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd. 4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
@@ -24,7 +24,7 @@
24static struct kmem_cache *orphan_entry_slab; 24static struct kmem_cache *orphan_entry_slab;
25static struct kmem_cache *inode_entry_slab; 25static struct kmem_cache *inode_entry_slab;
26 26
27/** 27/*
28 * We guarantee no failure on the returned page. 28 * We guarantee no failure on the returned page.
29 */ 29 */
30struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index) 30struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
@@ -44,7 +44,7 @@ repeat:
44 return page; 44 return page;
45} 45}
46 46
47/** 47/*
48 * We guarantee no failure on the returned page. 48 * We guarantee no failure on the returned page.
49 */ 49 */
50struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index) 50struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
@@ -543,7 +543,7 @@ retry:
543 goto retry; 543 goto retry;
544} 544}
545 545
546/** 546/*
547 * Freeze all the FS-operations for checkpoint. 547 * Freeze all the FS-operations for checkpoint.
548 */ 548 */
549void block_operations(struct f2fs_sb_info *sbi) 549void block_operations(struct f2fs_sb_info *sbi)
@@ -727,7 +727,7 @@ static void do_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
727 F2FS_RESET_SB_DIRT(sbi); 727 F2FS_RESET_SB_DIRT(sbi);
728} 728}
729 729
730/** 730/*
731 * We guarantee that this checkpoint procedure should not fail. 731 * We guarantee that this checkpoint procedure should not fail.
732 */ 732 */
733void write_checkpoint(struct f2fs_sb_info *sbi, bool blocked, bool is_umount) 733void write_checkpoint(struct f2fs_sb_info *sbi, bool blocked, bool is_umount)