Reindicizzazioni varie e riscrittura totale della sezione sul
[gapil.git] / listati / file_system_type.h
1 struct file_system_type {
2         const char *name;
3         int fs_flags;
4         int (*get_sb) (struct file_system_type *, int,
5                        const char *, void *, struct vfsmount *);
6         struct dentry *(*mount) (struct file_system_type *, int,
7                        const char *, void *);
8         void (*kill_sb) (struct super_block *);
9         struct module *owner;
10         struct file_system_type * next;
11         struct list_head fs_supers;
12
13         struct lock_class_key s_lock_key;
14         ...
15 };