Lines Matching refs:dentry
48 static int ipathfs_mknod(struct inode *dir, struct dentry *dentry, in ipathfs_mknod() argument
72 d_instantiate(dentry, inode); in ipathfs_mknod()
80 struct dentry *parent, struct dentry **dentry, in create_file() argument
86 *dentry = lookup_one_len(name, parent, strlen(name)); in create_file()
87 if (!IS_ERR(*dentry)) in create_file()
88 error = ipathfs_mknod(d_inode(parent), *dentry, in create_file()
91 error = PTR_ERR(*dentry); in create_file()
235 struct dentry *dir, *tmp; in create_device_files()
267 static int remove_file(struct dentry *parent, char *name) in remove_file()
269 struct dentry *tmp; in remove_file()
300 struct dentry *dir, *root; in remove_device_files()
360 static struct dentry *ipathfs_mount(struct file_system_type *fs_type, in ipathfs_mount()
363 struct dentry *ret; in ipathfs_mount()