Lines Matching refs:dchild
1411 struct dentry *dentry, *dchild; in nfsd_create_locked() local
1420 dchild = dget(resfhp->fh_dentry); in nfsd_create_locked()
1435 host_err = vfs_create(&nop_mnt_idmap, dirp, dchild, in nfsd_create_locked()
1441 host_err = vfs_mkdir(&nop_mnt_idmap, dirp, dchild, iap->ia_mode); in nfsd_create_locked()
1442 if (!host_err && unlikely(d_unhashed(dchild))) { in nfsd_create_locked()
1444 d = lookup_one_len(dchild->d_name.name, in nfsd_create_locked()
1445 dchild->d_parent, in nfsd_create_locked()
1446 dchild->d_name.len); in nfsd_create_locked()
1459 dput(dchild); in nfsd_create_locked()
1460 dchild = d; in nfsd_create_locked()
1469 host_err = vfs_mknod(&nop_mnt_idmap, dirp, dchild, in nfsd_create_locked()
1483 dput(dchild); in nfsd_create_locked()
1502 struct dentry *dentry, *dchild = NULL; in nfsd_create() local
1520 dchild = lookup_one_len(fname, dentry, flen); in nfsd_create()
1521 host_err = PTR_ERR(dchild); in nfsd_create()
1522 if (IS_ERR(dchild)) { in nfsd_create()
1526 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp); in nfsd_create()
1531 dput(dchild); in nfsd_create()