mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
nilfs2: switch to ->free_inode()
kill an extern that went stale 9 years ago, while we are at it... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
ca1a199e3b
commit
977c3d1894
@ -252,7 +252,6 @@ int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *, struct nilfs_argv *,
|
||||
void nilfs_inode_add_blocks(struct inode *inode, int n);
|
||||
void nilfs_inode_sub_blocks(struct inode *inode, int n);
|
||||
extern struct inode *nilfs_new_inode(struct inode *, umode_t);
|
||||
extern void nilfs_free_inode(struct inode *);
|
||||
extern int nilfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
|
||||
extern void nilfs_set_inode_flags(struct inode *);
|
||||
extern int nilfs_read_inode_common(struct inode *, struct nilfs_inode *);
|
||||
@ -289,7 +288,6 @@ static inline int nilfs_mark_inode_dirty_sync(struct inode *inode)
|
||||
|
||||
/* super.c */
|
||||
extern struct inode *nilfs_alloc_inode(struct super_block *);
|
||||
extern void nilfs_destroy_inode(struct inode *);
|
||||
|
||||
extern __printf(3, 4)
|
||||
void __nilfs_msg(struct super_block *sb, const char *level,
|
||||
|
@ -155,21 +155,14 @@ struct inode *nilfs_alloc_inode(struct super_block *sb)
|
||||
return &ii->vfs_inode;
|
||||
}
|
||||
|
||||
static void nilfs_i_callback(struct rcu_head *head)
|
||||
static void nilfs_free_inode(struct inode *inode)
|
||||
{
|
||||
struct inode *inode = container_of(head, struct inode, i_rcu);
|
||||
|
||||
if (nilfs_is_metadata_file_inode(inode))
|
||||
nilfs_mdt_destroy(inode);
|
||||
|
||||
kmem_cache_free(nilfs_inode_cachep, NILFS_I(inode));
|
||||
}
|
||||
|
||||
void nilfs_destroy_inode(struct inode *inode)
|
||||
{
|
||||
call_rcu(&inode->i_rcu, nilfs_i_callback);
|
||||
}
|
||||
|
||||
static int nilfs_sync_super(struct super_block *sb, int flag)
|
||||
{
|
||||
struct the_nilfs *nilfs = sb->s_fs_info;
|
||||
@ -686,7 +679,7 @@ static int nilfs_show_options(struct seq_file *seq, struct dentry *dentry)
|
||||
|
||||
static const struct super_operations nilfs_sops = {
|
||||
.alloc_inode = nilfs_alloc_inode,
|
||||
.destroy_inode = nilfs_destroy_inode,
|
||||
.free_inode = nilfs_free_inode,
|
||||
.dirty_inode = nilfs_dirty_inode,
|
||||
.evict_inode = nilfs_evict_inode,
|
||||
.put_super = nilfs_put_super,
|
||||
|
Loading…
Reference in New Issue
Block a user