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.h25
1 files changed, 15 insertions, 10 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 73c7d6f04b31..3e50dd24af87 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1269,23 +1269,26 @@ find_exported_dentry(struct super_block *sb, void *obj, void *parent,
1269struct file_system_type { 1269struct file_system_type {
1270 const char *name; 1270 const char *name;
1271 int fs_flags; 1271 int fs_flags;
1272 struct super_block *(*get_sb) (struct file_system_type *, int, 1272 int (*get_sb) (struct file_system_type *, int,
1273 const char *, void *); 1273 const char *, void *, struct vfsmount *);
1274 void (*kill_sb) (struct super_block *); 1274 void (*kill_sb) (struct super_block *);
1275 struct module *owner; 1275 struct module *owner;
1276 struct file_system_type * next; 1276 struct file_system_type * next;
1277 struct list_head fs_supers; 1277 struct list_head fs_supers;
1278}; 1278};
1279 1279
1280struct super_block *get_sb_bdev(struct file_system_type *fs_type, 1280extern int get_sb_bdev(struct file_system_type *fs_type,
1281 int flags, const char *dev_name, void *data, 1281 int flags, const char *dev_name, void *data,
1282 int (*fill_super)(struct super_block *, void *, int)); 1282 int (*fill_super)(struct super_block *, void *, int),
1283struct super_block *get_sb_single(struct file_system_type *fs_type, 1283 struct vfsmount *mnt);
1284extern int get_sb_single(struct file_system_type *fs_type,
1284 int flags, void *data, 1285 int flags, void *data,
1285 int (*fill_super)(struct super_block *, void *, int)); 1286 int (*fill_super)(struct super_block *, void *, int),
1286struct super_block *get_sb_nodev(struct file_system_type *fs_type, 1287 struct vfsmount *mnt);
1288extern int get_sb_nodev(struct file_system_type *fs_type,
1287 int flags, void *data, 1289 int flags, void *data,
1288 int (*fill_super)(struct super_block *, void *, int)); 1290 int (*fill_super)(struct super_block *, void *, int),
1291 struct vfsmount *mnt);
1289void generic_shutdown_super(struct super_block *sb); 1292void generic_shutdown_super(struct super_block *sb);
1290void kill_block_super(struct super_block *sb); 1293void kill_block_super(struct super_block *sb);
1291void kill_anon_super(struct super_block *sb); 1294void kill_anon_super(struct super_block *sb);
@@ -1296,8 +1299,10 @@ struct super_block *sget(struct file_system_type *type,
1296 int (*test)(struct super_block *,void *), 1299 int (*test)(struct super_block *,void *),
1297 int (*set)(struct super_block *,void *), 1300 int (*set)(struct super_block *,void *),
1298 void *data); 1301 void *data);
1299struct super_block *get_sb_pseudo(struct file_system_type *, char *, 1302extern int get_sb_pseudo(struct file_system_type *, char *,
1300 struct super_operations *ops, unsigned long); 1303 struct super_operations *ops, unsigned long,
1304 struct vfsmount *mnt);
1305extern int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb);
1301int __put_super(struct super_block *sb); 1306int __put_super(struct super_block *sb);
1302int __put_super_and_need_restart(struct super_block *sb); 1307int __put_super_and_need_restart(struct super_block *sb);
1303void unnamed_dev_init(void); 1308void unnamed_dev_init(void);