msdosfs_syms.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #include <linux/module.h>
  8. #include <linux/mm.h>
  9. #include <linux/msdos_fs.h>
  10. #include <linux/init.h>
  11. /*
  12.  * Support for umsdos fs
  13.  *
  14.  * These symbols are _always_ exported, in case someone
  15.  * wants to install the umsdos module later.
  16.  */
  17. EXPORT_SYMBOL(msdos_create);
  18. EXPORT_SYMBOL(msdos_lookup);
  19. EXPORT_SYMBOL(msdos_mkdir);
  20. EXPORT_SYMBOL(msdos_rename);
  21. EXPORT_SYMBOL(msdos_rmdir);
  22. EXPORT_SYMBOL(msdos_unlink);
  23. EXPORT_SYMBOL(msdos_read_super);
  24. EXPORT_SYMBOL(msdos_put_super);
  25. static DECLARE_FSTYPE_DEV(msdos_fs_type, "msdos", msdos_read_super);
  26. static int __init init_msdos_fs(void)
  27. {
  28. return register_filesystem(&msdos_fs_type);
  29. }
  30. static void __exit exit_msdos_fs(void)
  31. {
  32. unregister_filesystem(&msdos_fs_type);
  33. }
  34. module_init(init_msdos_fs)
  35. module_exit(exit_msdos_fs)
  36. MODULE_LICENSE("GPL");