1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-02 20:00:56 +00:00

Merge pull request #842 from beninidavide/fix_grammar

Fix grammar
This commit is contained in:
Dongliang Mu 2024-05-05 17:35:12 +08:00 committed by GitHub
commit 7dd61a6921
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ There are three types of `deferred interrupts` in the Linux kernel:
* `tasklets`; * `tasklets`;
* `workqueues`; * `workqueues`;
And we will see description of all of these types in this part. As I said, we saw only a little bit about this theme, so, now is time to dive deep into details about this theme. And we will see a description of all of these types in this part. As I said, we saw only a little bit about this theme, so, now is time to dive deep into details about this theme.
Softirqs Softirqs
---------------------------------------------------------------------------------- ----------------------------------------------------------------------------------
@ -43,7 +43,7 @@ $ systemd-cgls -k | grep ksoft
├─ 43 [ksoftirqd/7] ├─ 43 [ksoftirqd/7]
``` ```
The `spawn_ksoftirqd` function starts this these threads. As we can see this function called as early [initcall](https://kernelnewbies.org/Documents/InitcallMechanism): The `spawn_ksoftirqd` function starts these threads. As we can see this function called as early [initcall](https://kernelnewbies.org/Documents/InitcallMechanism):
```C ```C
early_initcall(spawn_ksoftirqd); early_initcall(spawn_ksoftirqd);

View File

@ -138,3 +138,4 @@ Thank you to all contributors:
* [Dexter Plameras](https://github.com/dexterp) * [Dexter Plameras](https://github.com/dexterp)
* [Jun Duan](https://github.com/waltforme) * [Jun Duan](https://github.com/waltforme)
* [Guochao Xie](https://github.com/XieGuochao) * [Guochao Xie](https://github.com/XieGuochao)
* [Davide Benini](https://github.com/beninidavide/)