The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/msdos/msdosfs_syms.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * linux/fs/msdos/msdosfs_syms.c
    3  *
    4  * Exported kernel symbols for the MS-DOS filesystem.
    5  * These symbols are used by umsdos.
    6  */
    7 
    8 #include <linux/module.h>
    9 
   10 #include <linux/mm.h>
   11 #include <linux/msdos_fs.h>
   12 #include <linux/init.h>
   13 
   14 /*
   15  * Support for umsdos fs
   16  *
   17  * These symbols are _always_ exported, in case someone
   18  * wants to install the umsdos module later.
   19  */
   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);
   28 
   29 static DECLARE_FSTYPE_DEV(msdos_fs_type, "msdos", msdos_read_super);
   30 
   31 static int __init init_msdos_fs(void)
   32 {
   33         return register_filesystem(&msdos_fs_type);
   34 }
   35 
   36 static void __exit exit_msdos_fs(void)
   37 {
   38         unregister_filesystem(&msdos_fs_type);
   39 }
   40 
   41 module_init(init_msdos_fs)
   42 module_exit(exit_msdos_fs)
   43 MODULE_LICENSE("GPL");

Cache object: f13494fbd54056887a7b660c138d04ad


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.