diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-06-04 22:21:54 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-09 16:47:53 -0400 |
commit | 01cd9fef6eb3caae06415861de5b53224b722549 (patch) | |
tree | ab34d701de3454ad2e071a682567c4380393f291 /fs/sysfs/inode.c | |
parent | 8267952b362b67a5cb5371d6894a772a13e6874c (diff) | |
download | linux-3.10-01cd9fef6eb3caae06415861de5b53224b722549.tar.gz linux-3.10-01cd9fef6eb3caae06415861de5b53224b722549.tar.bz2 linux-3.10-01cd9fef6eb3caae06415861de5b53224b722549.zip |
switch sysfs to ->evict_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/sysfs/inode.c')
-rw-r--r-- | fs/sysfs/inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/sysfs/inode.c b/fs/sysfs/inode.c index 7e187fbd3d4..cffb1fd8ba3 100644 --- a/fs/sysfs/inode.c +++ b/fs/sysfs/inode.c @@ -312,15 +312,15 @@ struct inode * sysfs_get_inode(struct super_block *sb, struct sysfs_dirent *sd) * The sysfs_dirent serves as both an inode and a directory entry for sysfs. * To prevent the sysfs inode numbers from being freed prematurely we take a * reference to sysfs_dirent from the sysfs inode. A - * super_operations.delete_inode() implementation is needed to drop that + * super_operations.evict_inode() implementation is needed to drop that * reference upon inode destruction. */ -void sysfs_delete_inode(struct inode *inode) +void sysfs_evict_inode(struct inode *inode) { struct sysfs_dirent *sd = inode->i_private; truncate_inode_pages(&inode->i_data, 0); - clear_inode(inode); + end_writeback(inode); sysfs_put(sd); } |