Home | History | Annotate | Download | only in ubifs

Lines Matching defs:dentry

44 struct dentry;
94 * dentry.
267 int (*statfs) (struct dentry *, struct kstatfs *);
273 int (*show_options)(struct seq_file *, struct dentry *);
274 int (*show_devname)(struct seq_file *, struct dentry *);
275 int (*show_path)(struct seq_file *, struct dentry *);
276 int (*show_stats)(struct seq_file *, struct dentry *);
300 struct dentry *s_root;
398 struct dentry *(*mount) (struct file_system_type *, int,
419 struct dentry *mnt_root; /* root of the mounted tree */
426 struct dentry *dentry;
431 #define f_dentry f_path.dentry
567 struct dentry {
569 spinlock_t d_lock; /* per dentry lock */
577 struct dentry *d_parent; /* parent directory */
587 struct super_block *d_sb; /* The root of the dentry tree */
596 static inline ino_t parent_ino(struct dentry *dentry)
600 spin_lock(&dentry->d_lock);
601 res = dentry->d_parent->d_inode->i_ino;
602 spin_unlock(&dentry->d_lock);
2148 const struct dentry *old_dentry,
2150 const struct dentry *new_dentry, int sync);
2350 int ubifs_setattr(struct dentry *dentry, struct iattr *attr);
2355 int ubifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
2359 int ubifs_setxattr(struct dentry *dentry, const char *name,
2361 ssize_t ubifs_getxattr(struct dentry *dentry, const char *name, void *buf,
2363 ssize_t ubifs_listxattr(struct dentry *dentry, char *buffer, size_t size);
2364 int ubifs_removexattr(struct dentry *dentry, const char *name);
2365 int ubifs_init_security(struct inode *dentry, struct inode *inode,