Linuxカーネルのソースコードで、私はこの関数を見つけました:
static int __init clk_disable_unused(void)
{
// some code
}
ここで私は何を__init
意味するのか理解できません。
回答:
include/linux/init.h
/* These macros are used to mark some functions or
* initialized data (doesn't apply to uninitialized data)
* as `initialization' functions. The kernel can take this
* as hint that the function is used only during the initialization
* phase and free up used memory resources after
*
* Usage:
* For functions:
*
* You should add __init immediately before the function name, like:
*
* static void __init initme(int x, int y)
* {
* extern int z; z = x * y;
* }
*
* If the function has a prototype somewhere, you can also add
* __init between closing brace of the prototype and semicolon:
*
* extern int initialize_foobar_device(int, int, int) __init;
*
* For initialized data:
* You should insert __initdata between the variable name and equal
* sign followed by value, e.g.:
*
* static int init_variable __initdata = 0;
* static const char linux_logo[] __initconst = { 0x32, 0x36, ... };
*
* Don't forget to initialize data not at file scope, i.e. within a function,
* as gcc otherwise puts the data into the bss section and not into the init
* section.
*
* Also note, that this data cannot be "const".
*/
/* These are for everybody (although not all archs will actually
discard it in modules) */
#define __init __section(.init.text) __cold notrace
#define __initdata __section(.init.data)
#define __initconst __section(.init.rodata)
#define __exitdata __section(.exit.data)
#define __exit_call __used __section(.exitcall.exit)
これらは、Linuxコードの一部を最終的に実行されるバイナリの特別な領域に配置するためのマクロにすぎません。
__init
たとえば、(または__attribute__ ((__section__
(".init.text")))
このマクロが展開されるより良い方法で)この関数を特別な方法でマークするようにコンパイラに指示します。最後に、リンカはバイナリファイルの最後(または最初)にこのマークが付いたすべての関数を収集します。
カーネルが起動すると、このコードは1回だけ実行されます(初期化)。実行後、カーネルはこのメモリを解放して再利用でき、カーネルメッセージが表示されます。
未使用のカーネルメモリの解放:108kが解放されました
この機能を使用するには、マークされたすべての関数の場所をリンカーに指示する特別なリンカースクリプトファイルが必要です。
これは、カーネル2.2以降の機能を示しています。init
およびcleanup
関数の定義の変更に注意してください。この__init
マクロにより、組み込みドライバーの関数が終了するとinit
、init
関数は破棄され、メモリが解放されますが、ロード可能なモジュールは解放されません。init
関数がいつ呼び出されるかを考えると、これは完全に理にかなっています。
linux / init.hのコメント(およびドキュメント)を同時に読んでください。
また、gccにはLinuxカーネルコード用に特別に作成されたいくつかの拡張機能があり、このマクロはそれらの1つを使用しているように見えることも知っておく必要があります。