From 921f1659f7dd6c442df8f613241fba93f1ae1ae5 Mon Sep 17 00:00:00 2001 From: Bence Cs Date: Wed, 17 Jul 2024 12:52:31 +0200 Subject: [PATCH] linux-cpu-3.md: Fix typo `initcall_backlist` --- Concepts/linux-cpu-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Concepts/linux-cpu-3.md b/Concepts/linux-cpu-3.md index 9460628..81136af 100644 --- a/Concepts/linux-cpu-3.md +++ b/Concepts/linux-cpu-3.md @@ -270,7 +270,7 @@ int __init_or_module do_one_initcall(initcall_t fn) } ``` -Let's try to understand what does the `do_one_initcall` function does. First of all we increase [preemption](https://en.wikipedia.org/wiki/Preemption_%28computing%29) counter so that we can 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 goes over the `blacklisted_initcalls` list which stores blacklisted `initcalls` and releases the given `initcall` if it is located in this list: +Let's try to understand what does the `do_one_initcall` function does. First of all we increase [preemption](https://en.wikipedia.org/wiki/Preemption_%28computing%29) counter so that we can check it later to be sure that it is not imbalanced. After this step we can see the call of the `initcall_blacklisted` function which goes over the `blacklisted_initcalls` list which stores blacklisted `initcalls` and releases the given `initcall` if it is located in this list: ```C list_for_each_entry(entry, &blacklisted_initcalls, next) {