Lines Matching refs:dentry

126 nfs_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
129 struct inode *inode = d_inode(dentry);
156 nfs_proc_lookup(struct inode *dir, struct dentry *dentry,
161 .name = dentry->d_name.name,
162 .len = dentry->d_name.len
177 if (nfs_lookup_is_soft_revalidate(dentry))
180 dprintk("NFS call lookup %pd2\n", dentry);
216 struct dentry *dentry, struct iattr *sattr)
224 data->arg.name = dentry->d_name.name;
225 data->arg.len = dentry->d_name.len;
241 nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
250 dprintk("NFS call create %pd\n", dentry);
251 data = nfs_alloc_createdata(dir, dentry, sattr);
259 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
270 nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
280 dprintk("NFS call mknod %pd\n", dentry);
291 data = nfs_alloc_createdata(dir, dentry, sattr);
306 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
314 nfs_proc_remove(struct inode *dir, struct dentry *dentry)
318 .name = dentry->d_name,
326 dprintk("NFS call remove %pd2\n",dentry);
336 struct dentry *dentry,
355 struct dentry *old_dentry,
356 struct dentry *new_dentry)
399 nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct folio *folio,
407 .fromname = dentry->d_name.name,
408 .fromlen = dentry->d_name.len,
419 dprintk("NFS call symlink %pd\n", dentry);
439 status = nfs_instantiate(dentry, fh, fattr);
450 nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
458 dprintk("NFS call mkdir %pd\n", dentry);
459 data = nfs_alloc_createdata(dir, dentry, sattr);
468 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
506 struct inode *dir = d_inode(nr_arg->dentry);