Lines Matching refs:target_dir
211 reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf) in reconnect_path() argument
215 dentry = dget(target_dir); in reconnect_path()
233 clear_disconnected(target_dir); in reconnect_path()
473 struct dentry *target_dir, *nresult; in exportfs_decode_fh() local
496 target_dir = nop->fh_to_parent(mnt->mnt_sb, fid, in exportfs_decode_fh()
498 if (!target_dir) in exportfs_decode_fh()
500 err = PTR_ERR(target_dir); in exportfs_decode_fh()
501 if (IS_ERR(target_dir)) in exportfs_decode_fh()
509 err = reconnect_path(mnt, target_dir, nbuf); in exportfs_decode_fh()
511 dput(target_dir); in exportfs_decode_fh()
520 err = exportfs_get_name(mnt, target_dir, nbuf, result); in exportfs_decode_fh()
522 dput(target_dir); in exportfs_decode_fh()
526 inode_lock(target_dir->d_inode); in exportfs_decode_fh()
527 nresult = lookup_one_len(nbuf, target_dir, strlen(nbuf)); in exportfs_decode_fh()
534 inode_unlock(target_dir->d_inode); in exportfs_decode_fh()
539 dput(target_dir); in exportfs_decode_fh()