f2fs: add __init to functions in init_f2fs_fs
Add __init to functions in init_f2fs_fs for code consistency. Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com> Signed-off-by: Amit Sahrawat <a.sahrawat@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
4589d25d01
commit
6e6093a8f1
@ -771,7 +771,7 @@ void init_orphan_info(struct f2fs_sb_info *sbi)
|
|||||||
sbi->n_orphans = 0;
|
sbi->n_orphans = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int create_checkpoint_caches(void)
|
int __init create_checkpoint_caches(void)
|
||||||
{
|
{
|
||||||
orphan_entry_slab = f2fs_kmem_cache_create("f2fs_orphan_entry",
|
orphan_entry_slab = f2fs_kmem_cache_create("f2fs_orphan_entry",
|
||||||
sizeof(struct orphan_inode_entry), NULL);
|
sizeof(struct orphan_inode_entry), NULL);
|
||||||
|
@ -914,7 +914,7 @@ int restore_node_summary(struct f2fs_sb_info *, unsigned int,
|
|||||||
void flush_nat_entries(struct f2fs_sb_info *);
|
void flush_nat_entries(struct f2fs_sb_info *);
|
||||||
int build_node_manager(struct f2fs_sb_info *);
|
int build_node_manager(struct f2fs_sb_info *);
|
||||||
void destroy_node_manager(struct f2fs_sb_info *);
|
void destroy_node_manager(struct f2fs_sb_info *);
|
||||||
int create_node_manager_caches(void);
|
int __init create_node_manager_caches(void);
|
||||||
void destroy_node_manager_caches(void);
|
void destroy_node_manager_caches(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -966,7 +966,7 @@ void sync_dirty_dir_inodes(struct f2fs_sb_info *);
|
|||||||
void block_operations(struct f2fs_sb_info *);
|
void block_operations(struct f2fs_sb_info *);
|
||||||
void write_checkpoint(struct f2fs_sb_info *, bool, bool);
|
void write_checkpoint(struct f2fs_sb_info *, bool, bool);
|
||||||
void init_orphan_info(struct f2fs_sb_info *);
|
void init_orphan_info(struct f2fs_sb_info *);
|
||||||
int create_checkpoint_caches(void);
|
int __init create_checkpoint_caches(void);
|
||||||
void destroy_checkpoint_caches(void);
|
void destroy_checkpoint_caches(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -988,7 +988,7 @@ void stop_gc_thread(struct f2fs_sb_info *);
|
|||||||
block_t start_bidx_of_node(unsigned int);
|
block_t start_bidx_of_node(unsigned int);
|
||||||
int f2fs_gc(struct f2fs_sb_info *);
|
int f2fs_gc(struct f2fs_sb_info *);
|
||||||
void build_gc_manager(struct f2fs_sb_info *);
|
void build_gc_manager(struct f2fs_sb_info *);
|
||||||
int create_gc_caches(void);
|
int __init create_gc_caches(void);
|
||||||
void destroy_gc_caches(void);
|
void destroy_gc_caches(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1060,7 +1060,7 @@ struct f2fs_stat_info {
|
|||||||
|
|
||||||
int f2fs_build_stats(struct f2fs_sb_info *);
|
int f2fs_build_stats(struct f2fs_sb_info *);
|
||||||
void f2fs_destroy_stats(struct f2fs_sb_info *);
|
void f2fs_destroy_stats(struct f2fs_sb_info *);
|
||||||
void f2fs_create_root_stats(void);
|
void __init f2fs_create_root_stats(void);
|
||||||
void f2fs_destroy_root_stats(void);
|
void f2fs_destroy_root_stats(void);
|
||||||
#else
|
#else
|
||||||
#define stat_inc_call_count(si)
|
#define stat_inc_call_count(si)
|
||||||
@ -1071,7 +1071,7 @@ void f2fs_destroy_root_stats(void);
|
|||||||
|
|
||||||
static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
|
static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
|
||||||
static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
|
static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
|
||||||
static inline void f2fs_create_root_stats(void) { }
|
static inline void __init f2fs_create_root_stats(void) { }
|
||||||
static inline void f2fs_destroy_root_stats(void) { }
|
static inline void f2fs_destroy_root_stats(void) { }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -697,7 +697,7 @@ void build_gc_manager(struct f2fs_sb_info *sbi)
|
|||||||
DIRTY_I(sbi)->v_ops = &default_v_ops;
|
DIRTY_I(sbi)->v_ops = &default_v_ops;
|
||||||
}
|
}
|
||||||
|
|
||||||
int create_gc_caches(void)
|
int __init create_gc_caches(void)
|
||||||
{
|
{
|
||||||
winode_slab = f2fs_kmem_cache_create("f2fs_gc_inodes",
|
winode_slab = f2fs_kmem_cache_create("f2fs_gc_inodes",
|
||||||
sizeof(struct inode_entry), NULL);
|
sizeof(struct inode_entry), NULL);
|
||||||
|
@ -1732,7 +1732,7 @@ void destroy_node_manager(struct f2fs_sb_info *sbi)
|
|||||||
kfree(nm_i);
|
kfree(nm_i);
|
||||||
}
|
}
|
||||||
|
|
||||||
int create_node_manager_caches(void)
|
int __init create_node_manager_caches(void)
|
||||||
{
|
{
|
||||||
nat_entry_slab = f2fs_kmem_cache_create("nat_entry",
|
nat_entry_slab = f2fs_kmem_cache_create("nat_entry",
|
||||||
sizeof(struct nat_entry), NULL);
|
sizeof(struct nat_entry), NULL);
|
||||||
|
@ -640,7 +640,7 @@ static struct file_system_type f2fs_fs_type = {
|
|||||||
.fs_flags = FS_REQUIRES_DEV,
|
.fs_flags = FS_REQUIRES_DEV,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int init_inodecache(void)
|
static int __init init_inodecache(void)
|
||||||
{
|
{
|
||||||
f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
|
f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
|
||||||
sizeof(struct f2fs_inode_info), NULL);
|
sizeof(struct f2fs_inode_info), NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user