mips_ksyms.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Export MIPS-specific functions needed for loadable modules.
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1996, 1997, 1998, 2000, 2001 by Ralf Baechle
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/module.h>
  12. #include <linux/string.h>
  13. #include <linux/mm.h>
  14. #include <linux/interrupt.h>
  15. #include <asm/irq.h>
  16. #include <linux/in6.h>
  17. #include <linux/pci.h>
  18. #include <linux/ide.h>
  19. #include <asm/bootinfo.h>
  20. #include <asm/checksum.h>
  21. #include <asm/dma.h>
  22. #include <asm/io.h>
  23. #include <asm/page.h>
  24. #include <asm/pgalloc.h>
  25. #include <asm/semaphore.h>
  26. #include <asm/sgi/sgihpc.h>
  27. #include <asm/sgi/sgimc.h>
  28. #include <asm/softirq.h>
  29. #include <asm/uaccess.h>
  30. #ifdef CONFIG_BLK_DEV_FD
  31. #include <asm/floppy.h>
  32. #endif
  33. extern void *__bzero(void *__s, size_t __count);
  34. extern long __strncpy_from_user_nocheck_asm(char *__to,
  35.                                             const char *__from, long __len);
  36. extern long __strncpy_from_user_asm(char *__to, const char *__from,
  37.                                     long __len);
  38. extern long __strlen_user_nocheck_asm(const char *s);
  39. extern long __strlen_user_asm(const char *s);
  40. extern long __strnlen_user_nocheck_asm(const char *s);
  41. extern long __strnlen_user_asm(const char *s);
  42. EXPORT_SYMBOL(mips_machtype);
  43. #ifdef CONFIG_EISA
  44. EXPORT_SYMBOL(EISA_bus);
  45. #endif
  46. /*
  47.  * String functions
  48.  */
  49. EXPORT_SYMBOL_NOVERS(memcmp);
  50. EXPORT_SYMBOL_NOVERS(memset);
  51. EXPORT_SYMBOL_NOVERS(memcpy);
  52. EXPORT_SYMBOL_NOVERS(memmove);
  53. EXPORT_SYMBOL_NOVERS(strcat);
  54. EXPORT_SYMBOL_NOVERS(strchr);
  55. EXPORT_SYMBOL_NOVERS(strlen);
  56. EXPORT_SYMBOL_NOVERS(strpbrk);
  57. EXPORT_SYMBOL_NOVERS(strncat);
  58. EXPORT_SYMBOL_NOVERS(strnlen);
  59. EXPORT_SYMBOL_NOVERS(strrchr);
  60. EXPORT_SYMBOL_NOVERS(strstr);
  61. EXPORT_SYMBOL_NOVERS(strtok);
  62. EXPORT_SYMBOL(_clear_page);
  63. EXPORT_SYMBOL(kernel_thread);
  64. /*
  65.  * Userspace access stuff.
  66.  */
  67. EXPORT_SYMBOL_NOVERS(__copy_user);
  68. EXPORT_SYMBOL_NOVERS(__bzero);
  69. EXPORT_SYMBOL_NOVERS(__strncpy_from_user_nocheck_asm);
  70. EXPORT_SYMBOL_NOVERS(__strncpy_from_user_asm);
  71. EXPORT_SYMBOL_NOVERS(__strlen_user_nocheck_asm);
  72. EXPORT_SYMBOL_NOVERS(__strlen_user_asm);
  73. EXPORT_SYMBOL_NOVERS(__strnlen_user_nocheck_asm);
  74. EXPORT_SYMBOL_NOVERS(__strnlen_user_asm);
  75. /* Networking helper routines. */
  76. EXPORT_SYMBOL(csum_partial_copy);
  77. /*
  78.  * Functions to control caches.
  79.  */
  80. EXPORT_SYMBOL(_flush_page_to_ram);
  81. EXPORT_SYMBOL(_flush_cache_all);
  82. EXPORT_SYMBOL(invalid_pte_table);
  83. /*
  84.  * Semaphore stuff
  85.  */
  86. EXPORT_SYMBOL(__down);
  87. EXPORT_SYMBOL(__down_interruptible);
  88. EXPORT_SYMBOL(__down_trylock);
  89. EXPORT_SYMBOL(__up);
  90. /*
  91.  * Architecture specific stuff.
  92.  */
  93. #ifdef CONFIG_MIPS_JAZZ
  94. EXPORT_SYMBOL(vdma_alloc);
  95. EXPORT_SYMBOL(vdma_free);
  96. EXPORT_SYMBOL(vdma_log2phys);
  97. #endif
  98. #ifdef CONFIG_SGI_IP22
  99. EXPORT_SYMBOL(hpc3c0);
  100. EXPORT_SYMBOL(hpc3c1);
  101. EXPORT_SYMBOL(mcmisc_regs);
  102. #endif
  103. /*
  104.  * Kernel hacking ...
  105.  */
  106. #include <asm/branch.h>
  107. #include <linux/sched.h>
  108. #ifdef CONFIG_VT
  109. EXPORT_SYMBOL(screen_info);
  110. #endif
  111. #if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE)
  112. EXPORT_SYMBOL(ide_ops);
  113. #endif
  114. EXPORT_SYMBOL(get_wchan);