aboutsummaryrefslogtreecommitdiffstats
path: root/kbench9000.mod.c
diff options
context:
space:
mode:
authorkarthik.bhargavan <karthik.bhargavan@gmail.com>2019-04-26 19:16:53 +0200
committerkarthik.bhargavan <karthik.bhargavan@gmail.com>2019-04-26 19:16:53 +0200
commit2fad9a5193c9216ff389a894c0cdc0a12a0c3a56 (patch)
treee264eb7f0fa33bc0f275132f259ba9ef685426c3 /kbench9000.mod.c
parentPrecompute s for small speedup (diff)
downloadkbench9000-2fad9a5193c9216ff389a894c0cdc0a12a0c3a56.tar.xz
kbench9000-2fad9a5193c9216ff389a894c0cdc0a12a0c3a56.zip
Diffstat (limited to 'kbench9000.mod.c')
-rw-r--r--kbench9000.mod.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/kbench9000.mod.c b/kbench9000.mod.c
new file mode 100644
index 0000000..87075df
--- /dev/null
+++ b/kbench9000.mod.c
@@ -0,0 +1,25 @@
+#include <linux/module.h>
+#include <linux/vermagic.h>
+#include <linux/compiler.h>
+
+MODULE_INFO(vermagic, VERMAGIC_STRING);
+MODULE_INFO(name, KBUILD_MODNAME);
+
+__visible struct module __this_module
+__attribute__((section(".gnu.linkonce.this_module"))) = {
+ .name = KBUILD_MODNAME,
+ .init = init_module,
+ .arch = MODULE_ARCH_INIT,
+};
+
+#ifdef RETPOLINE
+MODULE_INFO(retpoline, "Y");
+#endif
+
+static const char __module_depends[]
+__used
+__attribute__((section(".modinfo"))) =
+"depends=";
+
+
+MODULE_INFO(srcversion, "DEDB4DD64572217870F43C9");