Lines Matching defs:fid
47 struct CodaFid *fid = (struct CodaFid *)data;
49 return coda_fideq(&cii->c_fid, fid);
54 struct CodaFid *fid = (struct CodaFid *)data;
56 cii->c_fid = *fid;
60 struct inode * coda_iget(struct super_block * sb, struct CodaFid * fid,
65 unsigned long hash = coda_f2i(fid);
67 inode = iget5_locked(sb, hash, coda_test_inode, coda_set_inode, fid);
88 - get the inode for the fid using vfs iget
92 struct inode *coda_cnode_make(struct CodaFid *fid, struct super_block *sb)
99 error = venus_getattr(sb, fid, &attr);
103 inode = coda_iget(sb, fid, &attr);
126 /* replace fid and rehash inode */
134 /* convert a fid to an inode. */
135 struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb)
138 unsigned long hash = coda_f2i(fid);
140 inode = ilookup5(sb, hash, coda_test_inode, fid);