diff options
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 976325d51e3d..c8e2d751ef9c 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h | |||
@@ -914,7 +914,7 @@ int restore_node_summary(struct f2fs_sb_info *, unsigned int, | |||
914 | void flush_nat_entries(struct f2fs_sb_info *); | 914 | void flush_nat_entries(struct f2fs_sb_info *); |
915 | int build_node_manager(struct f2fs_sb_info *); | 915 | int build_node_manager(struct f2fs_sb_info *); |
916 | void destroy_node_manager(struct f2fs_sb_info *); | 916 | void destroy_node_manager(struct f2fs_sb_info *); |
917 | int create_node_manager_caches(void); | 917 | int __init create_node_manager_caches(void); |
918 | void destroy_node_manager_caches(void); | 918 | void destroy_node_manager_caches(void); |
919 | 919 | ||
920 | /* | 920 | /* |
@@ -966,7 +966,7 @@ void sync_dirty_dir_inodes(struct f2fs_sb_info *); | |||
966 | void block_operations(struct f2fs_sb_info *); | 966 | void block_operations(struct f2fs_sb_info *); |
967 | void write_checkpoint(struct f2fs_sb_info *, bool, bool); | 967 | void write_checkpoint(struct f2fs_sb_info *, bool, bool); |
968 | void init_orphan_info(struct f2fs_sb_info *); | 968 | void init_orphan_info(struct f2fs_sb_info *); |
969 | int create_checkpoint_caches(void); | 969 | int __init create_checkpoint_caches(void); |
970 | void destroy_checkpoint_caches(void); | 970 | void destroy_checkpoint_caches(void); |
971 | 971 | ||
972 | /* | 972 | /* |
@@ -988,7 +988,7 @@ void stop_gc_thread(struct f2fs_sb_info *); | |||
988 | block_t start_bidx_of_node(unsigned int); | 988 | block_t start_bidx_of_node(unsigned int); |
989 | int f2fs_gc(struct f2fs_sb_info *); | 989 | int f2fs_gc(struct f2fs_sb_info *); |
990 | void build_gc_manager(struct f2fs_sb_info *); | 990 | void build_gc_manager(struct f2fs_sb_info *); |
991 | int create_gc_caches(void); | 991 | int __init create_gc_caches(void); |
992 | void destroy_gc_caches(void); | 992 | void destroy_gc_caches(void); |
993 | 993 | ||
994 | /* | 994 | /* |
@@ -1060,7 +1060,7 @@ struct f2fs_stat_info { | |||
1060 | 1060 | ||
1061 | int f2fs_build_stats(struct f2fs_sb_info *); | 1061 | int f2fs_build_stats(struct f2fs_sb_info *); |
1062 | void f2fs_destroy_stats(struct f2fs_sb_info *); | 1062 | void f2fs_destroy_stats(struct f2fs_sb_info *); |
1063 | void f2fs_create_root_stats(void); | 1063 | void __init f2fs_create_root_stats(void); |
1064 | void f2fs_destroy_root_stats(void); | 1064 | void f2fs_destroy_root_stats(void); |
1065 | #else | 1065 | #else |
1066 | #define stat_inc_call_count(si) | 1066 | #define stat_inc_call_count(si) |
@@ -1071,7 +1071,7 @@ void f2fs_destroy_root_stats(void); | |||
1071 | 1071 | ||
1072 | static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; } | 1072 | static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; } |
1073 | static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { } | 1073 | static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { } |
1074 | static inline void f2fs_create_root_stats(void) { } | 1074 | static inline void __init f2fs_create_root_stats(void) { } |
1075 | static inline void f2fs_destroy_root_stats(void) { } | 1075 | static inline void f2fs_destroy_root_stats(void) { } |
1076 | #endif | 1076 | #endif |
1077 | 1077 | ||