Reindicizzazioni varie e riscrittura totale della sezione sul
[gapil.git] / listati / file_system_type.h
diff --git a/listati/file_system_type.h b/listati/file_system_type.h
new file mode 100644 (file)
index 0000000..4f4ceb9
--- /dev/null
@@ -0,0 +1,15 @@
+struct file_system_type {
+        const char *name;
+        int fs_flags;
+        int (*get_sb) (struct file_system_type *, int,
+                       const char *, void *, struct vfsmount *);
+        struct dentry *(*mount) (struct file_system_type *, int,
+                       const char *, void *);
+        void (*kill_sb) (struct super_block *);
+        struct module *owner;
+        struct file_system_type * next;
+        struct list_head fs_supers;
+
+        struct lock_class_key s_lock_key;
+        ...
+};