Commit ed31a7dd authored by Jan Harkes's avatar Jan Harkes Committed by Linus Torvalds

coda: use ilookup5

Signed-off-by: default avatarJan Harkes <jaharkes@cs.cmu.edu>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fac1f0e3
...@@ -55,11 +55,6 @@ static int coda_set_inode(struct inode *inode, void *data) ...@@ -55,11 +55,6 @@ static int coda_set_inode(struct inode *inode, void *data)
return 0; return 0;
} }
static int coda_fail_inode(struct inode *inode, void *data)
{
return -1;
}
struct inode * coda_iget(struct super_block * sb, struct CodaFid * fid, struct inode * coda_iget(struct super_block * sb, struct CodaFid * fid,
struct coda_vattr * attr) struct coda_vattr * attr)
{ {
...@@ -141,7 +136,7 @@ struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb) ...@@ -141,7 +136,7 @@ struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb)
return NULL; return NULL;
} }
inode = iget5_locked(sb, hash, coda_test_inode, coda_fail_inode, fid); inode = ilookup5(sb, hash, coda_test_inode, fid);
if ( !inode ) if ( !inode )
return NULL; return NULL;
......
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