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_XIA_FS
  15 #include <linux/xia_fs.h>
  16 #endif
  17 #ifdef CONFIG_PROC_FS
  18 #include <linux/proc_fs.h>
  19 #endif
  20 #ifdef CONFIG_EXT2_FS
  21 #include <linux/ext2_fs.h>
  22 #endif
  23 #ifdef CONFIG_EXT_FS
  24 #include <linux/ext_fs.h>
  25 #endif
  26 #ifdef CONFIG_MSDOS_FS
  27 #include <linux/msdos_fs.h>
  28 #endif
  29 #ifdef CONFIG_NFS_FS
  30 #include <linux/nfs_fs.h>
  31 #endif
  32 #ifdef CONFIG_ISO9660_FS
  33 #include <linux/iso_fs.h>
  34 #endif
  35 #ifdef CONFIG_HPFS_FS
  36 #include <linux/hpfs_fs.h>
  37 #endif
  38 #ifdef CONFIG_SYSV_FS
  39 #include <linux/sysv_fs.h>
  40 #endif
  41 
  42 struct file_system_type file_systems[] = {
  43 #ifdef CONFIG_MINIX_FS
  44         {minix_read_super,      "minix",        1},
  45 #endif
  46 #ifdef CONFIG_EXT_FS
  47         {ext_read_super,        "ext",          1},
  48 #endif
  49 #ifdef CONFIG_EXT2_FS
  50         {ext2_read_super,       "ext2",         1},
  51 #endif
  52 #ifdef CONFIG_XIA_FS
  53         {xiafs_read_super,      "xiafs",        1},
  54 #endif
  55 #ifdef CONFIG_MSDOS_FS
  56         {msdos_read_super,      "msdos",        1},
  57 #endif
  58 #ifdef CONFIG_PROC_FS
  59         {proc_read_super,       "proc",         0},
  60 #endif
  61 #ifdef CONFIG_NFS_FS
  62         {nfs_read_super,        "nfs",          0},
  63 #endif
  64 #ifdef CONFIG_ISO9660_FS
  65         {isofs_read_super,      "iso9660",      1},
  66 #endif
  67 #ifdef CONFIG_SYSV_FS
  68         {sysv_read_super,       "xenix",        1},
  69         {sysv_read_super,       "sysv",         1},
  70         {sysv_read_super,       "coherent",     1},
  71 #endif
  72 #ifdef CONFIG_HPFS_FS
  73         {hpfs_read_super,       "hpfs",         1},
  74 #endif
  75         {NULL,                  NULL,           0}
  76 };

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