Lines Matching refs:target_dir
206 reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf) in reconnect_path() argument
210 dentry = dget(target_dir); in reconnect_path()
228 clear_disconnected(target_dir); in reconnect_path()
458 struct dentry *target_dir, *nresult; in exportfs_decode_fh() local
481 target_dir = nop->fh_to_parent(mnt->mnt_sb, fid, in exportfs_decode_fh()
483 if (!target_dir) in exportfs_decode_fh()
485 err = PTR_ERR(target_dir); in exportfs_decode_fh()
486 if (IS_ERR(target_dir)) in exportfs_decode_fh()
494 err = reconnect_path(mnt, target_dir, nbuf); in exportfs_decode_fh()
496 dput(target_dir); in exportfs_decode_fh()
505 err = exportfs_get_name(mnt, target_dir, nbuf, result); in exportfs_decode_fh()
507 mutex_lock(&target_dir->d_inode->i_mutex); in exportfs_decode_fh()
508 nresult = lookup_one_len(nbuf, target_dir, in exportfs_decode_fh()
510 mutex_unlock(&target_dir->d_inode->i_mutex); in exportfs_decode_fh()
524 dput(target_dir); in exportfs_decode_fh()