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/vfat/vfatfs_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/vfatfs_syms.c
    3  *
    4  * Exported kernel symbols for the VFAT filesystem.
    5  * These symbols are used by dmsdos.
    6  */
    7 
    8 #include <linux/module.h>
    9 #include <linux/init.h>
   10 
   11 #include <linux/mm.h>
   12 #include <linux/msdos_fs.h>
   13 
   14 DECLARE_FSTYPE_DEV(vfat_fs_type, "vfat", vfat_read_super);
   15 
   16 EXPORT_SYMBOL(vfat_create);
   17 EXPORT_SYMBOL(vfat_unlink);
   18 EXPORT_SYMBOL(vfat_mkdir);
   19 EXPORT_SYMBOL(vfat_rmdir);
   20 EXPORT_SYMBOL(vfat_rename);
   21 EXPORT_SYMBOL(vfat_read_super);
   22 EXPORT_SYMBOL(vfat_lookup);
   23 
   24 static int __init init_vfat_fs(void)
   25 {
   26         return register_filesystem(&vfat_fs_type);
   27 }
   28 
   29 static void __exit exit_vfat_fs(void)
   30 {
   31         unregister_filesystem(&vfat_fs_type);
   32 }
   33 
   34 module_init(init_vfat_fs)
   35 module_exit(exit_vfat_fs)
   36 MODULE_LICENSE("GPL");

Cache object: 1f3c07add3669c7ee2e697546b89953a


[ 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.