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()
277 d_instantiate(dentry, result); in hpfs_mknod()
291 static int hpfs_symlink(struct inode *dir, struct dentry *dentry, const char *symlink) in hpfs_symlink() argument
293 const unsigned char *name = dentry->d_name.name; in hpfs_symlink()
294 unsigned len = dentry->d_name.len; in hpfs_symlink()
356 d_instantiate(dentry, result); in hpfs_symlink()
369 static int hpfs_unlink(struct inode *dir, struct dentry *dentry) in hpfs_unlink() argument
371 const unsigned char *name = dentry->d_name.name; in hpfs_unlink()
372 unsigned len = dentry->d_name.len; in hpfs_unlink()
375 struct inode *inode = d_inode(dentry); in hpfs_unlink()
420 static int hpfs_rmdir(struct inode *dir, struct dentry *dentry) in hpfs_rmdir() argument
422 const unsigned char *name = dentry->d_name.name; in hpfs_rmdir()
423 unsigned len = dentry->d_name.len; in hpfs_rmdir()
426 struct inode *inode = d_inode(dentry); in hpfs_rmdir()
510 static int hpfs_rename(struct inode *old_dir, struct dentry *old_dentry, in hpfs_rename()
511 struct inode *new_dir, struct dentry *new_dentry) in hpfs_rename()