i386_ksyms_32.c 864 B

123456789101112131415161718192021222324252627282930313233343536373839
  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);