diff options
author | Christoph Hellwig <hch@lst.de> | 2008-04-29 11:46:26 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-05-06 13:45:34 -0400 |
commit | 33dcdac2df54e66c447ae03f58c95c7251aa5649 (patch) | |
tree | 72163e37bd44452581f68d7991b14e70f37b8bba /fs/inode.c | |
parent | dca3c33652e437ed02c30ed3eca3cecd0cc00838 (diff) |
[PATCH] kill ->put_inode
And with that last patch to affs killing the last put_inode instance we
can finally, after many years of transition kill this racy and awkward
interface.
(It's kinda funny that even the description in
Documentation/filesystems/vfs.txt was entirely wrong..)
Also remove a very misleading comment above the defintion of
struct super_operations.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/inode.c')
-rw-r--r-- | fs/inode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/inode.c b/fs/inode.c index bf6478130424..18bdce14b70c 100644 --- a/fs/inode.c +++ b/fs/inode.c | |||
@@ -1153,9 +1153,6 @@ void iput(struct inode *inode) | |||
1153 | 1153 | ||
1154 | BUG_ON(inode->i_state == I_CLEAR); | 1154 | BUG_ON(inode->i_state == I_CLEAR); |
1155 | 1155 | ||
1156 | if (op && op->put_inode) | ||
1157 | op->put_inode(inode); | ||
1158 | |||
1159 | if (atomic_dec_and_lock(&inode->i_count, &inode_lock)) | 1156 | if (atomic_dec_and_lock(&inode->i_count, &inode_lock)) |
1160 | iput_final(inode); | 1157 | iput_final(inode); |
1161 | } | 1158 | } |