1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>__initcall()/module_init() include/linux/init.h</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="Unreliable Guide To Hacking The Linux Kernel"><link rel="up" href="common-routines.html" title="Chapter 6. Common Routines"><link rel="prev" href="routines-init.html" title="__init/__exit/__initdata include/linux/init.h"><link rel="next" href="routines-moduleexit.html" title="module_exit() include/linux/init.h"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><code class="function">__initcall()</code>/<code class="function">module_init()</code> 2 <code class="filename">include/linux/init.h</code></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="routines-init.html">Prev</a> </td><th width="60%" align="center">Chapter 6. Common Routines</th><td width="20%" align="right"> <a accesskey="n" href="routines-moduleexit.html">Next</a></td></tr></table><hr></div><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="routines-init-again"></a><code class="function">__initcall()</code>/<code class="function">module_init()</code> 3 <code class="filename">include/linux/init.h</code></h2></div></div></div><p> 4 Many parts of the kernel are well served as a module 5 (dynamically-loadable parts of the kernel). Using the 6 <code class="function">module_init()</code> and 7 <code class="function">module_exit()</code> macros it is easy to write code 8 without #ifdefs which can operate both as a module or built into 9 the kernel. 10 </p><p> 11 The <code class="function">module_init()</code> macro defines which 12 function is to be called at module insertion time (if the file is 13 compiled as a module), or at boot time: if the file is not 14 compiled as a module the <code class="function">module_init()</code> macro 15 becomes equivalent to <code class="function">__initcall()</code>, which 16 through linker magic ensures that the function is called on boot. 17 </p><p> 18 The function can return a negative error number to cause 19 module loading to fail (unfortunately, this has no effect if 20 the module is compiled into the kernel). This function is 21 called in user context with interrupts enabled, so it can sleep. 22 </p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="routines-init.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="common-routines.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="routines-moduleexit.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="type">__init</span>/<span class="type">__exit</span>/<span class="type">__initdata</span> 23 <code class="filename">include/linux/init.h</code> </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">  <code class="function">module_exit()</code> 24 <code class="filename">include/linux/init.h</code> </td></tr></table></div></body></html> 25