aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_super.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2010-06-07 14:34:48 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-08-09 16:48:37 -0400
commitb57922d97fd6f79b6dbe6db0c4fd30d219fa08c1 (patch)
tree1d39e9cd8e1c1f502fb7e985a08286859c69aa36 /fs/9p/vfs_super.c
parent45321ac54316eaeeebde0b5f728a1791e500974c (diff)
convert remaining ->clear_inode() to ->evict_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/9p/vfs_super.c')
-rw-r--r--fs/9p/vfs_super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/9p/vfs_super.c b/fs/9p/vfs_super.c
index be74d020436e..c6122bf547df 100644
--- a/fs/9p/vfs_super.c
+++ b/fs/9p/vfs_super.c
@@ -257,7 +257,7 @@ static const struct super_operations v9fs_super_ops = {
257 .destroy_inode = v9fs_destroy_inode, 257 .destroy_inode = v9fs_destroy_inode,
258#endif 258#endif
259 .statfs = simple_statfs, 259 .statfs = simple_statfs,
260 .clear_inode = v9fs_clear_inode, 260 .evict_inode = v9fs_evict_inode,
261 .show_options = generic_show_options, 261 .show_options = generic_show_options,
262 .umount_begin = v9fs_umount_begin, 262 .umount_begin = v9fs_umount_begin,
263}; 263};
@@ -268,7 +268,7 @@ static const struct super_operations v9fs_super_ops_dotl = {
268 .destroy_inode = v9fs_destroy_inode, 268 .destroy_inode = v9fs_destroy_inode,
269#endif 269#endif
270 .statfs = v9fs_statfs, 270 .statfs = v9fs_statfs,
271 .clear_inode = v9fs_clear_inode, 271 .evict_inode = v9fs_evict_inode,
272 .show_options = generic_show_options, 272 .show_options = generic_show_options,
273 .umount_begin = v9fs_umount_begin, 273 .umount_begin = v9fs_umount_begin,
274}; 274};