PageRenderTime 188ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/x86/kernel/i386_ksyms_32.c

https://bitbucket.org/ndreys/linux-sunxi
C | 38 lines | 23 code | 8 blank | 7 comment | 0 complexity | 14563e2675acade6e1109a93ab7b62f7 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
  1. #include <linux/module.h>
  2. #include <asm/checksum.h>
  3. #include <asm/pgtable.h>
  4. #include <asm/desc.h>
  5. #include <asm/ftrace.h>
  6. #ifdef CONFIG_FUNCTION_TRACER
  7. /* mcount is defined in assembly */
  8. EXPORT_SYMBOL(mcount);
  9. #endif
  10. /*
  11. * Note, this is a prototype to get at the symbol for
  12. * the export, but dont use it from C code, it is used
  13. * by assembly code and is not using C calling convention!
  14. */
  15. #ifndef CONFIG_X86_CMPXCHG64
  16. extern void cmpxchg8b_emu(void);
  17. EXPORT_SYMBOL(cmpxchg8b_emu);
  18. #endif
  19. /* Networking helper routines. */
  20. EXPORT_SYMBOL(csum_partial_copy_generic);
  21. EXPORT_SYMBOL(__get_user_1);
  22. EXPORT_SYMBOL(__get_user_2);
  23. EXPORT_SYMBOL(__get_user_4);
  24. EXPORT_SYMBOL(__put_user_1);
  25. EXPORT_SYMBOL(__put_user_2);
  26. EXPORT_SYMBOL(__put_user_4);
  27. EXPORT_SYMBOL(__put_user_8);
  28. EXPORT_SYMBOL(strstr);
  29. EXPORT_SYMBOL(csum_partial);
  30. EXPORT_SYMBOL(empty_zero_page);