Skip to content

Commit 75ed29a

Browse files
committed
Update interrupts-9.md
1 parent 04918b1 commit 75ed29a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interrupts/interrupts-9.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The `spawn_ksoftirqd` function starts this these threads. As we can see this fun
4949
early_initcall(spawn_ksoftirqd);
5050
```
5151
52-
Deferred interrupts are determined statically at compile-time of the Linux kernel and the `open_softirq` function takes care of `softirq` initialization. The `open_softirq` function defined in the [kernel/softirq.c](https://github.com/torvalds/linux/blob/master/kernel/softirq.c):
52+
Softirqs are determined statically at compile-time of the Linux kernel and the `open_softirq` function takes care of `softirq` initialization. The `open_softirq` function defined in the [kernel/softirq.c](https://github.com/torvalds/linux/blob/master/kernel/softirq.c):
5353
5454
5555
```C
@@ -61,7 +61,7 @@ void open_softirq(int nr, void (*action)(struct softirq_action *))
6161

6262
and as we can see this function uses two parameters:
6363

64-
* the index of the `softirq_vec` array;
64+
* the index of the `softirq_vec` array;
6565
* a pointer to the softirq function to be executed;
6666

6767
First of all let's look on the `softirq_vec` array:

0 commit comments

Comments
 (0)