aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index f84d9928bdb..c0701288d20 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1423,6 +1423,7 @@ struct super_block {
1423 * generic_show_options() 1423 * generic_show_options()
1424 */ 1424 */
1425 char __rcu *s_options; 1425 char __rcu *s_options;
1426 const struct dentry_operations *s_d_op; /* default d_op for dentries */
1426}; 1427};
1427 1428
1428extern struct timespec current_fs_time(struct super_block *sb); 1429extern struct timespec current_fs_time(struct super_block *sb);
@@ -1834,7 +1835,9 @@ struct super_block *sget(struct file_system_type *type,
1834 int (*set)(struct super_block *,void *), 1835 int (*set)(struct super_block *,void *),
1835 void *data); 1836 void *data);
1836extern struct dentry *mount_pseudo(struct file_system_type *, char *, 1837extern struct dentry *mount_pseudo(struct file_system_type *, char *,
1837 const struct super_operations *ops, unsigned long); 1838 const struct super_operations *ops,
1839 const struct dentry_operations *dops,
1840 unsigned long);
1838extern void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb); 1841extern void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb);
1839 1842
1840static inline void sb_mark_dirty(struct super_block *sb) 1843static inline void sb_mark_dirty(struct super_block *sb)