lock_nolock.mod.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #include <linux/module.h>
  2. #include <linux/vermagic.h>
  3. #include <linux/compiler.h>
  4. MODULE_INFO(vermagic, VERMAGIC_STRING);
  5. #undef unix
  6. struct module __this_module
  7. __attribute__((section(".gnu.linkonce.this_module"))) = {
  8. .name = __stringify(KBUILD_MODNAME),
  9. .init = init_module,
  10. #ifdef CONFIG_MODULE_UNLOAD
  11. .exit = cleanup_module,
  12. #endif
  13. };
  14. static const struct modversion_info ____versions[]
  15. __attribute_used__
  16. __attribute__((section("__versions"))) = {
  17. { 0x316962fc, "struct_module" },
  18. { 0x5a34a45c, "__kmalloc" },
  19. { 0x724beef2, "malloc_sizes" },
  20. { 0x3fa03a97, "memset" },
  21. { 0xc16fe12d, "__memcpy" },
  22. { 0xdd132261, "printk" },
  23. { 0x859204af, "sscanf" },
  24. { 0x3656bf5a, "lock_kernel" },
  25. { 0x1e6d26a8, "strstr" },
  26. { 0x41ede9df, "lm_register_proto" },
  27. { 0xb1f975aa, "unlock_kernel" },
  28. { 0x87b0b01f, "posix_lock_file_wait" },
  29. { 0x75f29cfd, "kmem_cache_alloc" },
  30. { 0x69384280, "lm_unregister_proto" },
  31. { 0x37a0cba, "kfree" },
  32. { 0x5d16bfe6, "posix_test_lock" },
  33. };
  34. static const char __module_depends[]
  35. __attribute_used__
  36. __attribute__((section(".modinfo"))) =
  37. "depends=gfs2";
  38. MODULE_INFO(srcversion, "123E446F965A386A0C017C4");