Lines Matching refs:dentry

22 static int hpfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)  in hpfs_mkdir()  argument
24 const unsigned char *name = dentry->d_name.name; in hpfs_mkdir()
25 unsigned len = dentry->d_name.len; in hpfs_mkdir()
114 d_instantiate(dentry, result); in hpfs_mkdir()
130 static int hpfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl) in hpfs_create() argument
132 const unsigned char *name = dentry->d_name.name; in hpfs_create()
133 unsigned len = dentry->d_name.len; in hpfs_create()
203 d_instantiate(dentry, result); in hpfs_create()
217 static int hpfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev) in hpfs_mknod() argument
219 const unsigned char *name = dentry->d_name.name; in hpfs_mknod()
220 unsigned len = dentry->d_name.len; in hpfs_mknod()
279 d_instantiate(dentry, result); in hpfs_mknod()
293 static int hpfs_symlink(struct inode *dir, struct dentry *dentry, const char *symlink) in hpfs_symlink() argument
295 const unsigned char *name = dentry->d_name.name; in hpfs_symlink()
296 unsigned len = dentry->d_name.len; in hpfs_symlink()
358 d_instantiate(dentry, result); in hpfs_symlink()
371 static int hpfs_unlink(struct inode *dir, struct dentry *dentry) in hpfs_unlink() argument
373 const unsigned char *name = dentry->d_name.name; in hpfs_unlink()
374 unsigned len = dentry->d_name.len; in hpfs_unlink()
377 struct inode *inode = d_inode(dentry); in hpfs_unlink()
422 static int hpfs_rmdir(struct inode *dir, struct dentry *dentry) in hpfs_rmdir() argument
424 const unsigned char *name = dentry->d_name.name; in hpfs_rmdir()
425 unsigned len = dentry->d_name.len; in hpfs_rmdir()
428 struct inode *inode = d_inode(dentry); in hpfs_rmdir()
512 static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry, in hpfs_rename()
513 struct inode *new_dir, struct dentry *new_dentry) in hpfs_rename()