summaryrefslogtreecommitdiffstats
path: root/fs/filesystems.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
commit27cfca1ec98e91261b1a5355d10a8996464b63af (patch)
tree8e895a53e372fa682b4c0a585b9377d67ed70d0e /fs/filesystems.c
parent6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff)
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too o Upgrade to 2.1.89. Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'fs/filesystems.c')
-rw-r--r--fs/filesystems.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/fs/filesystems.c b/fs/filesystems.c
index 7e9c5bf3f..01a2a6d24 100644
--- a/fs/filesystems.c
+++ b/fs/filesystems.c
@@ -24,6 +24,8 @@
#include <linux/ufs_fs.h>
#include <linux/romfs_fs.h>
#include <linux/auto_fs.h>
+#include <linux/ntfs_fs.h>
+#include <linux/hfs_fs.h>
#include <linux/efs_fs.h>
#include <linux/major.h>
#include <linux/smp.h>
@@ -36,6 +38,10 @@
#include <linux/init.h>
#include <linux/nls.h>
+#ifdef CONFIG_CODA_FS
+extern int init_coda_fs(void);
+#endif
+
extern void device_setup(void);
extern void binfmt_setup(void);
extern void free_initmem(void);
@@ -86,6 +92,10 @@ __initfunc(static void do_sys_setup(void))
init_nfs_fs();
#endif
+#ifdef CONFIG_CODA_FS
+ init_coda_fs();
+#endif
+
#ifdef CONFIG_SMB_FS
init_smb_fs();
#endif
@@ -106,6 +116,14 @@ __initfunc(static void do_sys_setup(void))
init_hpfs_fs();
#endif
+#ifdef CONFIG_NTFS_FS
+ init_ntfs_fs();
+#endif
+
+#ifdef CONFIG_HFS_FS
+ init_hfs_fs();
+#endif
+
#ifdef CONFIG_AFFS_FS
init_affs_fs();
#endif
@@ -122,6 +140,10 @@ __initfunc(static void do_sys_setup(void))
init_efs_fs();
#endif
+#ifdef CONFIG_ADFS_FS
+ init_adfs_fs();
+#endif
+
#ifdef CONFIG_NLS
init_nls();
#endif