diff options
author | Haicheng Li <haicheng.li@linux.intel.com> | 2013-06-13 04:59:28 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-06-13 20:04:44 -0400 |
commit | 8d8451af6875f8841dc20987d1363405020a9172 (patch) | |
tree | 30aa552ccb395f029913ff8689a02a0a6ece7aec /fs | |
parent | e79efe3b69d6454eb8ec734a24d49f0f4c7d26f5 (diff) |
f2fs: make locate_dirty_segment() as static
It's used only locally and could be static.
Signed-off-by: Haicheng Li <haicheng.li@linux.intel.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/f2fs.h | 1 | ||||
-rw-r--r-- | fs/f2fs/segment.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index a05aa65cfc2c..3e7cb33b64d3 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h | |||
@@ -996,7 +996,6 @@ void destroy_node_manager_caches(void); | |||
996 | */ | 996 | */ |
997 | void f2fs_balance_fs(struct f2fs_sb_info *); | 997 | void f2fs_balance_fs(struct f2fs_sb_info *); |
998 | void invalidate_blocks(struct f2fs_sb_info *, block_t); | 998 | void invalidate_blocks(struct f2fs_sb_info *, block_t); |
999 | void locate_dirty_segment(struct f2fs_sb_info *, unsigned int); | ||
1000 | void clear_prefree_segments(struct f2fs_sb_info *); | 999 | void clear_prefree_segments(struct f2fs_sb_info *); |
1001 | int npages_for_summary_flush(struct f2fs_sb_info *); | 1000 | int npages_for_summary_flush(struct f2fs_sb_info *); |
1002 | void allocate_new_segments(struct f2fs_sb_info *); | 1001 | void allocate_new_segments(struct f2fs_sb_info *); |
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index 77f31c0584e5..b15debcccc23 100644 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/segment.c | |||
@@ -94,7 +94,7 @@ static void __remove_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno, | |||
94 | * Adding dirty entry into seglist is not critical operation. | 94 | * Adding dirty entry into seglist is not critical operation. |
95 | * If a given segment is one of current working segments, it won't be added. | 95 | * If a given segment is one of current working segments, it won't be added. |
96 | */ | 96 | */ |
97 | void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno) | 97 | static void locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno) |
98 | { | 98 | { |
99 | struct dirty_seglist_info *dirty_i = DIRTY_I(sbi); | 99 | struct dirty_seglist_info *dirty_i = DIRTY_I(sbi); |
100 | unsigned short valid_blocks; | 100 | unsigned short valid_blocks; |