Commit b69257f2 authored by Al Viro's avatar Al Viro

switch hypfs to ->evict_inode()

... and since we never hash its inodes, default
->drop_inode() will work just fine.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b0683aa6
...@@ -117,10 +117,10 @@ static struct inode *hypfs_make_inode(struct super_block *sb, int mode) ...@@ -117,10 +117,10 @@ static struct inode *hypfs_make_inode(struct super_block *sb, int mode)
return ret; return ret;
} }
static void hypfs_drop_inode(struct inode *inode) static void hypfs_evict_inode(struct inode *inode)
{ {
end_writeback(inode);
kfree(inode->i_private); kfree(inode->i_private);
generic_delete_inode(inode);
} }
static int hypfs_open(struct inode *inode, struct file *filp) static int hypfs_open(struct inode *inode, struct file *filp)
...@@ -460,7 +460,7 @@ static struct file_system_type hypfs_type = { ...@@ -460,7 +460,7 @@ static struct file_system_type hypfs_type = {
static const struct super_operations hypfs_s_ops = { static const struct super_operations hypfs_s_ops = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = hypfs_drop_inode, .evict_inode = hypfs_evict_inode,
.show_options = hypfs_show_options, .show_options = hypfs_show_options,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment