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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*- --------------------------------------------------------- *
  2.  *
  3.  * linux/fs/autofs/init.c
  4.  *
  5.  *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
  6.  *
  7.  * This file is part of the Linux kernel and is made available under
  8.  * the terms of the GNU General Public License, version 2, or at your
  9.  * option, any later version, incorporated herein by reference.
  10.  *
  11.  * ------------------------------------------------------------------------- */
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include "autofs_i.h"
  15. static DECLARE_FSTYPE(autofs_fs_type, "autofs", autofs_read_super, 0);
  16. static int __init init_autofs_fs(void)
  17. {
  18. return register_filesystem(&autofs_fs_type);
  19. }
  20. static void __exit exit_autofs_fs(void)
  21. {
  22. unregister_filesystem(&autofs_fs_type);
  23. }
  24. module_init(init_autofs_fs);
  25. module_exit(exit_autofs_fs);
  26. #ifdef DEBUG
  27. void autofs_say(const char *name, int len)
  28. {
  29. printk("(%d: ", len);
  30. while ( len-- )
  31. printk("%c", *name++);
  32. printk(")n");
  33. }
  34. #endif
  35. MODULE_LICENSE("GPL");