Lines Matching refs:dentry
94 static struct dentry *ibmasmfs_mount(struct file_system_type *fst, in ibmasmfs_mount()
152 static struct dentry *ibmasmfs_create_file(struct dentry *parent, in ibmasmfs_create_file()
158 struct dentry *dentry; in ibmasmfs_create_file() local
161 dentry = d_alloc_name(parent, name); in ibmasmfs_create_file()
162 if (!dentry) in ibmasmfs_create_file()
167 dput(dentry); in ibmasmfs_create_file()
174 d_add(dentry, inode); in ibmasmfs_create_file()
175 return dentry; in ibmasmfs_create_file()
178 static struct dentry *ibmasmfs_create_dir(struct dentry *parent, in ibmasmfs_create_dir()
181 struct dentry *dentry; in ibmasmfs_create_dir() local
184 dentry = d_alloc_name(parent, name); in ibmasmfs_create_dir()
185 if (!dentry) in ibmasmfs_create_dir()
190 dput(dentry); in ibmasmfs_create_dir()
197 d_add(dentry, inode); in ibmasmfs_create_dir()
198 return dentry; in ibmasmfs_create_dir()
610 struct dentry *dir; in ibmasmfs_create_files()
611 struct dentry *remote_dir; in ibmasmfs_create_files()