You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you may understand from the part's title, this part will cover interesting and important concpet in the Linux kernel which is called - `initcall`. We already saw definitions like these:
7
+
As you may understand from the title, this part will cover interesting and important concept in the Linux kernel which is called - `initcall`. We already saw definitions like these:
8
8
9
9
```C
10
10
early_param("debug", debug_kernel);
@@ -16,7 +16,7 @@ or
16
16
arch_initcall(init_pit_clocksource);
17
17
```
18
18
19
-
in some parts of the Linux kernel. Before we will see how this mechanism is implemented in the Linux kernel, we must know actually what is it and how the Linux kernel uses it. Definitions like these represent a [callback](https://en.wikipedia.org/wiki/Callback_%28computer_programming%29) function which will be called during initialization of the Linux kernel or right after. Actually the main point of the `initcall` mechanism is to determine correct order of the built-in modules and subsystems initialization. For example let's look at the following function:
19
+
in some parts of the Linux kernel. Before we see how this mechanism is implemented in the Linux kernel, we must know actually what is it and how the Linux kernel uses it. Definitions like these represent a [callback](https://en.wikipedia.org/wiki/Callback_%28computer_programming%29) function which will be called during initialization of the Linux kernel or right after it. Actually the main point of the `initcall` mechanism is to determine correct order of the built-in modules and subsystems initialization. For example let's look at the following function:
20
20
21
21
```C
22
22
staticint __init nmi_warning_debugfs(void)
@@ -44,7 +44,7 @@ The Linux kernel calls all architecture-specific `initcalls` before the `fs` rel
44
44
*`device`;
45
45
*`late`.
46
46
47
-
All of their names are represetned by the `initcall_level_names` array which is defined in the [init/main.c](https://github.com/torvalds/linux/blob/master/init/main.c) source code file:
47
+
All of their names are represented by the `initcall_level_names` array which is defined in the [init/main.c](https://github.com/torvalds/linux/blob/master/init/main.c) source code file:
All functions which are marked as `initcall` by these identificators, will be called in the same order or at first will be called `early initcalls`, at second `core initcalls` and etc. From this moment we know a little about `initcall` mechanism, so we can start to dive into the source code of the Linux kernel to see how this mechanism implemented.
62
+
All functions which are marked as `initcall` by these identificators, will be called in the same order or at first `early initcalls` will be called, at second `core initcalls` and etc. From this moment we know a little about `initcall` mechanism, so we can start to dive into the source code of the Linux kernel to see how this mechanism is implemented.
63
63
64
64
Implementation initcall mechanism in the Linux kernel
@@ -77,9 +77,9 @@ The Linux kernel provides a set of macros from the [include/linux/init.h](https:
77
77
#definelate_initcall(fn) __define_initcall(fn, 7)
78
78
```
79
79
80
-
and as we may see just expands to the call of the `__define_initcall` macro from the same header file. As we may see, the `__define_inticall` macro takes two arguments:
80
+
and as we may see these macros just expands to the call of the `__define_initcall` macro from the same header file. As we may see, the `__define_inticall` macro takes two arguments:
81
81
82
-
*`fn` - callback function which is will be called during call of `initcalls` of the certain level;
82
+
*`fn` - callback function which will be called during call of `initcalls` of the certain level;
83
83
*`id` - identificator to identify `initcall` to prevent error when two the same `initcalls` point to the same handler.
84
84
85
85
The implementation of the `__define_initcall` macro looks like:
@@ -91,7 +91,7 @@ The implementation of the `__define_initcall` macro looks like:
91
91
LTO_REFERENCE_INITCALL(__initcall_##fn##id)
92
92
```
93
93
94
-
To understand the `__define_initcall` macro, first of all let's look at the `initcall_t` type. This type is defined in the same [header]() file and represetns pointer to a function which returns pointer to [integer](https://en.wikipedia.org/wiki/Integer) which will be result of the `initcall`:
94
+
To understand the `__define_initcall` macro, first of all let's look at the `initcall_t` type. This type is defined in the same [header]() file and represents pointer to a function which returns pointer to [integer](https://en.wikipedia.org/wiki/Integer) which will be result of the `initcall`:
95
95
96
96
```C
97
97
typedef int (*initcall_t)(void);
@@ -135,7 +135,7 @@ which prevents `variable defined but not used` warning. The last line of the `__
135
135
LTO_REFERENCE_INITCALL(__initcall_##fn##id)
136
136
```
137
137
138
-
depens on the `CONFIG_LTO` kernel configuration option and just provides stub for the compiler [Link time optimization](https://gcc.gnu.org/wiki/LinkTimeOptimization):
138
+
depends on the `CONFIG_LTO` kernel configuration option and just provides stub for the compiler [Link time optimization](https://gcc.gnu.org/wiki/LinkTimeOptimization):
139
139
140
140
```
141
141
#ifdef CONFIG_LTO
@@ -255,7 +255,7 @@ int __init_or_module do_one_initcall(initcall_t fn)
255
255
}
256
256
```
257
257
258
-
Let's try to understand what does the `do_on_initcall` function does. First of all we increase [preemtion](https://en.wikipedia.org/wiki/Preemption_%28computing%29) counter to check it later to be sure that it is not imbalanced. After this step we can see the call of the `initcall_bakclist` function which
258
+
Let's try to understand what does the `do_on_initcall` function does. First of all we increase [preemption](https://en.wikipedia.org/wiki/Preemption_%28computing%29) counter to check it later to be sure that it is not imbalanced. After this step we can see the call of the `initcall_backlist` function which
259
259
goes over the `blacklisted_initcalls` list which stores blacklisted `initcalls` and releases the given `initcall` if it is located in this list:
260
260
261
261
```C
@@ -285,7 +285,7 @@ Depends on the valule of the `initcall_debug` variable, the `do_one_initcall_deb
285
285
bool initcall_debug;
286
286
```
287
287
288
-
and provides ability to print some informatinion to the kernel [log buffer](https://en.wikipedia.org/wiki/Dmesg). The value of the variable can be set from the kernel commandle via the `initcall_debug` parameter. As we can read from the [documentation](https://www.kernel.org/doc/Documentation/kernel-parameters.txt) of the Linux kernel command line:
288
+
and provides ability to print some information to the kernel [log buffer](https://en.wikipedia.org/wiki/Dmesg). The value of the variable can be set from the kernel commands via the `initcall_debug` parameter. As we can read from the [documentation](https://www.kernel.org/doc/Documentation/kernel-parameters.txt) of the Linux kernel command line:
289
289
290
290
```
291
291
initcall_debug [KNL] Trace initcalls as they are executed. Useful
@@ -315,7 +315,7 @@ static int __init_or_module do_one_initcall_debug(initcall_t fn)
315
315
}
316
316
```
317
317
318
-
As an `initcall` was called by the one of the ` do_one_initcall` or `do_one_initcall_debug` functions, we may see two checks in the end of the `do_one_initcall` function. The first check amount of possible `__preempt_count_add` and `__preempt_count_sub` calls inside of the executed initcall, and if this value is not equal to the previous value of the preemptible counter, we add the `preemption imbalance` string to the message buffer and set correct value of the preemptible counter:
318
+
As an `initcall` was called by the one of the ` do_one_initcall` or `do_one_initcall_debug` functions, we may see two checks in the end of the `do_one_initcall` function. The first one checks the amount of possible `__preempt_count_add` and `__preempt_count_sub` calls inside of the executed initcall, and if this value is not equal to the previous value of the preemptible counter, we add the `preemption imbalance` string to the message buffer and set correct value of the preemptible counter:
319
319
320
320
```C
321
321
if (preempt_count() != count) {
@@ -341,7 +341,7 @@ First of all, we have missed one level of `initcalls`, this is `rootfs initcalls
As we may understand from the macro's name, its main purpose to store callbacks which are related to the [rootfs](https://en.wikipedia.org/wiki/Initramfs). Besides this goal, it may be useful to initialize a stuff after initialization related to filesystems level, but before devices related stuff not initizlied. For example, the decompression of the [initramfs](https://en.wikipedia.org/wiki/Initramfs) which is occurred in the `populate_rootfs` function from the [init/initramfs.c](https://github.com/torvalds/linux/blob/master/init/initramfs.c) source code file:
344
+
As we may understand from the macro's name, its main purpose is to store callbacks which are related to the [rootfs](https://en.wikipedia.org/wiki/Initramfs). Besides this goal, it may be useful to initialize other stuffs after initialization related to filesystems level, but only before devices related stuff are not initialized. For example, the decompression of the [initramfs](https://en.wikipedia.org/wiki/Initramfs) which occurred in the `populate_rootfs` function from the [init/initramfs.c](https://github.com/torvalds/linux/blob/master/init/initramfs.c) source code file:
0 commit comments