From 7feecf88ad3ed7713f0f582ae14a1b02513f7759 Mon Sep 17 00:00:00 2001 From: Davide Benini Date: Thu, 18 Jan 2024 16:57:27 +0100 Subject: [PATCH 1/2] Update linux-interrupts-9.md Small grammar fixes --- Interrupts/linux-interrupts-9.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Interrupts/linux-interrupts-9.md b/Interrupts/linux-interrupts-9.md index ea648e8..3afdcee 100644 --- a/Interrupts/linux-interrupts-9.md +++ b/Interrupts/linux-interrupts-9.md @@ -24,7 +24,7 @@ There are three types of `deferred interrupts` in the Linux kernel: * `tasklets`; * `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 ---------------------------------------------------------------------------------- @@ -43,7 +43,7 @@ $ systemd-cgls -k | grep ksoft ├─ 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 early_initcall(spawn_ksoftirqd); From 172c32679837fa3dcb03a0d0b4bfe4e150a874f3 Mon Sep 17 00:00:00 2001 From: Davide Benini Date: Fri, 19 Jan 2024 14:49:06 +0100 Subject: [PATCH 2/2] Update contributors.md --- contributors.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors.md b/contributors.md index 51dc6a8..66bc8d1 100644 --- a/contributors.md +++ b/contributors.md @@ -138,3 +138,4 @@ Thank you to all contributors: * [Dexter Plameras](https://github.com/dexterp) * [Jun Duan](https://github.com/waltforme) * [Guochao Xie](https://github.com/XieGuochao) +* [Davide Benini](https://github.com/beninidavide/)