root/fs/filesystems.c

/* [previous][next][first][last][top][bottom][index][help] */
   1 /*
   2  *  linux/fs/filesystems.c
   3  *
   4  *  Copyright (C) 1991, 1992  Linus Torvalds
   5  *
   6  *  table of configured filesystems
   7  */
   8 
   9 #include <linux/config.h>
  10 #include <linux/fs.h>
  11 #ifdef CONFIG_MINIX_FS
  12 #include <linux/minix_fs.h>
  13 #endif
  14 #ifdef CONFIG_PROC_FS
  15 #include <linux/proc_fs.h>
  16 #endif
  17 #ifdef CONFIG_EXT_FS
  18 #include <linux/ext_fs.h>
  19 #endif
  20 #ifdef CONFIG_MSDOS_FS
  21 #include <linux/msdos_fs.h>
  22 #endif
  23 #ifdef CONFIG_NFS_FS
  24 #include <linux/nfs_fs.h>
  25 #endif
  26 #ifdef CONFIG_ISO9660_FS
  27 #include <linux/iso_fs.h>
  28 #endif
  29 
  30 struct file_system_type file_systems[] = {
  31 #ifdef CONFIG_MINIX_FS
  32         {minix_read_super,      "minix",        1},
  33 #endif
  34 #ifdef CONFIG_EXT_FS
  35         {ext_read_super,        "ext",          1},
  36 #endif
  37 #ifdef CONFIG_MSDOS_FS
  38         {msdos_read_super,      "msdos",        1},
  39 #endif
  40 #ifdef CONFIG_PROC_FS
  41         {proc_read_super,       "proc",         0},
  42 #endif
  43 #ifdef CONFIG_NFS_FS
  44         {nfs_read_super,        "nfs",          0},
  45 #endif
  46 #ifdef CONFIG_ISO9660_FS
  47         {isofs_read_super,      "iso9660",      1},
  48 #endif
  49         {NULL,                  NULL,           0}
  50 };

/* [previous][next][first][last][top][bottom][index][help] */