Struktura 
file_system_type

Marcin Szuppe

struct file_system_type {
  const char *name;
  int fs_flags;
  struct super_block *(*read_super) (struct super_block *, void *, int);
  struct module *owner;
  struct vfsmount *kern_mnt;
/* For kernel mount, if it's FS_SINGLE fs */
  struct file_system_type * next;
};