Commit aa7fa240 authored by David Howells's avatar David Howells Committed by Linus Torvalds

iget: use iget_failed() in AFS

Use iget_failed() in AFS to kill a failed inode.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Acked-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b46980fe
...@@ -196,10 +196,7 @@ struct inode *afs_iget(struct super_block *sb, struct key *key, ...@@ -196,10 +196,7 @@ struct inode *afs_iget(struct super_block *sb, struct key *key,
/* failure */ /* failure */
bad_inode: bad_inode:
make_bad_inode(inode); iget_failed(inode);
unlock_new_inode(inode);
iput(inode);
_leave(" = %d [bad]", ret); _leave(" = %d [bad]", ret);
return ERR_PTR(ret); return ERR_PTR(ret);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment