diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-06-07 00:18:40 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-09 16:48:17 -0400 |
commit | ea544009206baa03d606161656618900260b48e5 (patch) | |
tree | a79545189692c066db2deaebc4505168b155b3df /fs/hpfs/super.c | |
parent | 33b0daaa5557e9dadf4c27407fae7d316bab5686 (diff) | |
download | linux-3.10-ea544009206baa03d606161656618900260b48e5.tar.gz linux-3.10-ea544009206baa03d606161656618900260b48e5.tar.bz2 linux-3.10-ea544009206baa03d606161656618900260b48e5.zip |
switch hpfs to ->evict_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hpfs/super.c')
-rw-r--r-- | fs/hpfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index aa53842c599..2607010be2f 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c @@ -450,7 +450,7 @@ static const struct super_operations hpfs_sops = { .alloc_inode = hpfs_alloc_inode, .destroy_inode = hpfs_destroy_inode, - .delete_inode = hpfs_delete_inode, + .evict_inode = hpfs_evict_inode, .put_super = hpfs_put_super, .statfs = hpfs_statfs, .remount_fs = hpfs_remount_fs, |