Home
last modified time | relevance | path

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

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