Searched refs:dchild (Results 1 - 3 of 3) sorted by relevance

/linux-master/fs/nfsd/
H A Dnfs3xdr.c984 struct dentry *dparent, *dchild; local
992 dchild = dget_parent(dparent);
997 if (dchild == dparent)
1002 dchild = dget(dparent);
1004 dchild = lookup_positive_unlocked(name, dparent, namlen);
1005 if (IS_ERR(dchild))
1007 if (d_mountpoint(dchild))
1009 if (dchild->d_inode->i_ino != ino)
1011 rv = fh_compose(fhp, exp, dchild, &cd->fh);
1013 dput(dchild);
[all...]
H A Dvfs.c1468 struct dentry *dentry, *dchild; local
1477 dchild = dget(resfhp->fh_dentry);
1492 host_err = vfs_create(&nop_mnt_idmap, dirp, dchild,
1498 host_err = vfs_mkdir(&nop_mnt_idmap, dirp, dchild, iap->ia_mode);
1499 if (!host_err && unlikely(d_unhashed(dchild))) {
1501 d = lookup_one_len(dchild->d_name.name,
1502 dchild->d_parent,
1503 dchild->d_name.len);
1516 dput(dchild);
1517 dchild
1559 struct dentry *dentry, *dchild = NULL; local
[all...]
H A Dnfsproc.c259 struct dentry *dchild; local
284 dchild = lookup_one_len(argp->name, dirfhp->fh_dentry, argp->len);
285 if (IS_ERR(dchild)) {
286 resp->status = nfserrno(PTR_ERR(dchild));
290 resp->status = fh_compose(newfhp, dirfhp->fh_export, dchild, dirfhp);
291 if (!resp->status && d_really_is_negative(dchild))
293 dput(dchild);

Completed in 255 milliseconds