diff options
Diffstat (limited to 'fs/internal.h')
-rw-r--r-- | fs/internal.h | 10 |
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 | ||
71 | extern void __init mnt_init(void); | 71 | extern void __init mnt_init(void); |
72 | 72 | ||
73 | extern 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 | */ |
81 | extern void mark_files_ro(struct super_block *); | 83 | extern void mark_files_ro(struct super_block *); |
84 | extern struct file *get_empty_filp(void); | ||
82 | 85 | ||
83 | /* | 86 | /* |
84 | * super.c | 87 | * super.c |
85 | */ | 88 | */ |
86 | extern int do_remount_sb(struct super_block *, int, void *, int); | 89 | extern int do_remount_sb(struct super_block *, int, void *, int); |
90 | |||
91 | /* | ||
92 | * open.c | ||
93 | */ | ||
94 | struct nameidata; | ||
95 | extern struct file *nameidata_to_filp(struct nameidata *); | ||
96 | extern void release_open_intent(struct nameidata *); | ||