1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 06:38:07 +00:00

Fix typos.

Signed-off-by: Jingyu Wang <jingyuwang_vip@163.com>
This commit is contained in:
Jingyu Wang 2022-06-14 20:41:36 +08:00
parent 78d85d2d37
commit 90f3cf49fa

View File

@ -340,7 +340,7 @@ The first is for case when scheduling of task groups is enabled with `completely
* scheduler entity structure;
* `runqueue`.
After we have calculated size, we allocate a space with the `kzalloc` function and set pointers of `sched_entity` and `runquques` there:
After we have calculated size, we allocate a space with the `kzalloc` function and set pointers of `sched_entity` and `runqueues` there:
```C
ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);