In Linux kernel source code i found such function
static int __init clk_disable_unused(void)
{
// some code
}
here i can not understand what does __init mean ?
|
|
|
|||
|
|
|
These are only macros to locate some parts of the linux code into special areas in the final executing binary. init for example (or better the __attribute ((section (".init.text"))) this macro expands to) instructs the compiler to mark this function in a special way. At the end the linker collects all functions with this mark at the end (or begin) of the binary file. When the kernel starts, this code runs only once (initialization). After it runs, the kernel can free this memory to reuse it and you will see the kernel message: Freeing unused kernel memory: 108k freed To use this feature, you need a special linker script file, that tells the linker where to locate all the marked functions. |
|||||
|
|
__init is a macro defined in ./include/linux/init.h which expands to It instructs the compiler to mark this function in a special way. At the end the linker collects all functions with this mark at the end (or begin) of the binary file. When the kernel starts, this code runs only once (initialization). After it runs, the kernel can free this memory to reuse it and you will see the kernel |
|||
|
|
|
This demonstrates a feature of kernel 2.2 and later. Notice the change in the definitions of the init and cleanup functions. The __init macro causes the init function to be discarded and its memory freed once the init function finishes for built-in drivers, but not loadable modules. If you think about when the init function is invoked, this makes perfect sense. source:http://fixunix.com/embedded/5276-what-__init-linux-kernel-code.html |
|||
|
|
|
Read comment (and docs at the same time) in linux/ini.h. You should also know that gcc has some extensions made specially for linux kernel code and it looks like this macro uses one of them. |
|||
|
|