aboutsummaryrefslogtreecommitdiffstats
path: root/fs/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/internal.h')
-rw-r--r--fs/internal.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/internal.h b/fs/internal.h
index 515175b8b72e..8a03a5447bdf 100644
--- a/fs/internal.h
+++ b/fs/internal.h
@@ -70,6 +70,8 @@ extern struct vfsmount *copy_tree(struct vfsmount *, struct dentry *, int);
70 70
71extern void __init mnt_init(void); 71extern void __init mnt_init(void);
72 72
73extern spinlock_t vfsmount_lock;
74
73/* 75/*
74 * fs_struct.c 76 * fs_struct.c
75 */ 77 */
@@ -79,8 +81,16 @@ extern void chroot_fs_refs(struct path *, struct path *);
79 * file_table.c 81 * file_table.c
80 */ 82 */
81extern void mark_files_ro(struct super_block *); 83extern void mark_files_ro(struct super_block *);
84extern struct file *get_empty_filp(void);
82 85
83/* 86/*
84 * super.c 87 * super.c
85 */ 88 */
86extern int do_remount_sb(struct super_block *, int, void *, int); 89extern int do_remount_sb(struct super_block *, int, void *, int);
90
91/*
92 * open.c
93 */
94struct nameidata;
95extern struct file *nameidata_to_filp(struct nameidata *);
96extern void release_open_intent(struct nameidata *);