diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-06-07 14:34:48 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-09 16:48:37 -0400 |
commit | b57922d97fd6f79b6dbe6db0c4fd30d219fa08c1 (patch) | |
tree | 1d39e9cd8e1c1f502fb7e985a08286859c69aa36 /include/linux/fs.h | |
parent | 45321ac54316eaeeebde0b5f728a1791e500974c (diff) |
convert remaining ->clear_inode() to ->evict_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 8553adbda57b..dec9ac598859 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1571,7 +1571,6 @@ struct super_operations { | |||
1571 | int (*unfreeze_fs) (struct super_block *); | 1571 | int (*unfreeze_fs) (struct super_block *); |
1572 | int (*statfs) (struct dentry *, struct kstatfs *); | 1572 | int (*statfs) (struct dentry *, struct kstatfs *); |
1573 | int (*remount_fs) (struct super_block *, int *, char *); | 1573 | int (*remount_fs) (struct super_block *, int *, char *); |
1574 | void (*clear_inode) (struct inode *); | ||
1575 | void (*umount_begin) (struct super_block *); | 1574 | void (*umount_begin) (struct super_block *); |
1576 | 1575 | ||
1577 | int (*show_options)(struct seq_file *, struct vfsmount *); | 1576 | int (*show_options)(struct seq_file *, struct vfsmount *); |
@@ -1616,7 +1615,7 @@ struct super_operations { | |||
1616 | * I_FREEING Set when inode is about to be freed but still has dirty | 1615 | * I_FREEING Set when inode is about to be freed but still has dirty |
1617 | * pages or buffers attached or the inode itself is still | 1616 | * pages or buffers attached or the inode itself is still |
1618 | * dirty. | 1617 | * dirty. |
1619 | * I_CLEAR Added by clear_inode(). In this state the inode is clean | 1618 | * I_CLEAR Added by end_writeback(). In this state the inode is clean |
1620 | * and can be destroyed. Inode keeps I_FREEING. | 1619 | * and can be destroyed. Inode keeps I_FREEING. |
1621 | * | 1620 | * |
1622 | * Inodes that are I_WILL_FREE, I_FREEING or I_CLEAR are | 1621 | * Inodes that are I_WILL_FREE, I_FREEING or I_CLEAR are |