1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>SystemTap: probes/test4/dtr.mod.c Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Data Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related Pages</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">probes</a> / <a class="el" href="dir_000003.html">test4</a></div>
<h1>dtr.mod.c</h1><div class="fragment"><pre class="fragment">00001 <span class="preprocessor">#include <linux/module.h></span>
00002 <span class="preprocessor">#include <linux/vermagic.h></span>
00003 <span class="preprocessor">#include <linux/compiler.h></span>
00004
00005 MODULE_INFO(vermagic, VERMAGIC_STRING);
00006
00007 <span class="preprocessor">#undef unix</span>
00008 <span class="preprocessor"></span><span class="keyword">struct </span>module __this_module
00009 __attribute__((section(".gnu.linkonce.this_module"))) = {
00010 .name = __stringify(KBUILD_MODNAME),
00011 .init = init_module,
00012 <span class="preprocessor">#ifdef CONFIG_MODULE_UNLOAD</span>
00013 <span class="preprocessor"></span> .exit = cleanup_module,
00014 <span class="preprocessor">#endif</span>
00015 <span class="preprocessor"></span>};
00016
00017 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">struct </span>modversion_info ____versions[]
00018 __attribute_used__
00019 __attribute__((section("__versions"))) = {
00020 { 0x506abef7, <span class="stringliteral">"struct_module"</span> },
00021 { 0xb240ca65, <span class="stringliteral">"schedule_work"</span> },
00022 { 0x1b9aca3f, <span class="stringliteral">"jprobe_return"</span> },
00023 { 0xe3b0192b, <span class="stringliteral">"vscnprintf"</span> },
00024 { 0x45e5f47f, <span class="stringliteral">"register_kprobe"</span> },
00025 { 0x1e736243, <span class="stringliteral">"unregister_kprobe"</span> },
00026 { 0xdd03a51e, <span class="stringliteral">"register_jprobe"</span> },
00027 { 0x49a83d3a, <span class="stringliteral">"unregister_jprobe"</span> },
00028 { 0x3fa03a97, <span class="stringliteral">"memset"</span> },
00029 { 0xc16fe12d, <span class="stringliteral">"__memcpy"</span> },
00030 { 0xe914e41e, <span class="stringliteral">"strcpy"</span> },
00031 { 0xe2d5255a, <span class="stringliteral">"strcmp"</span> },
00032 { 0x2fd1d81c, <span class="stringliteral">"vfree"</span> },
00033 { 0x37a0cba, <span class="stringliteral">"kfree"</span> },
00034 { 0xd6ee688f, <span class="stringliteral">"vmalloc"</span> },
00035 { 0x8ce16b3f, <span class="stringliteral">"__kmalloc"</span> },
00036 { 0x8e3c9cc3, <span class="stringliteral">"vprintk"</span> },
00037 { 0xdd132261, <span class="stringliteral">"printk"</span> },
00038 };
00039
00040 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span> __module_depends[]
00041 __attribute_used__
00042 __attribute__((section(<span class="stringliteral">".modinfo"</span>))) =
00043 <span class="stringliteral">"depends="</span>;
00044
00045
00046 MODULE_INFO(srcversion, <span class="stringliteral">"3CC4F9300C5C4E353BD2804"</span>);
</pre></div></body></html>
|