Import 2.3.7pre9
[davej-history.git] / fs / msdos / msdosfs_syms.c
blobb44c669ceb9b5d1a58d7f176d26789f6f6274597
1 /*
2 * linux/fs/msdos/msdosfs_syms.c
4 * Exported kernel symbols for the MS-DOS filesystem.
5 * These symbols are used by umsdos.
6 */
8 #include <linux/module.h>
10 #include <linux/mm.h>
11 #include <linux/msdos_fs.h>
12 #include <linux/init.h>
15 * Support for umsdos fs
17 * These symbols are _always_ exported, in case someone
18 * wants to install the umsdos module later.
20 EXPORT_SYMBOL(msdos_create);
21 EXPORT_SYMBOL(msdos_lookup);
22 EXPORT_SYMBOL(msdos_mkdir);
23 EXPORT_SYMBOL(msdos_rename);
24 EXPORT_SYMBOL(msdos_rmdir);
25 EXPORT_SYMBOL(msdos_unlink);
26 EXPORT_SYMBOL(msdos_read_super);
27 EXPORT_SYMBOL(msdos_put_super);
30 struct file_system_type msdos_fs_type = {
31 "msdos",
32 FS_REQUIRES_DEV,
33 msdos_read_super,
34 NULL
37 __initfunc(int init_msdos_fs(void))
39 return register_filesystem(&msdos_fs_type);