From 90f3cf49fa99e10de3a7772b5c608cb2050f6da8 Mon Sep 17 00:00:00 2001 From: Jingyu Wang Date: Tue, 14 Jun 2022 20:41:36 +0800 Subject: [PATCH] Fix typos. Signed-off-by: Jingyu Wang --- Initialization/linux-initialization-8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Initialization/linux-initialization-8.md b/Initialization/linux-initialization-8.md index 9b74cf6..62f0e64 100644 --- a/Initialization/linux-initialization-8.md +++ b/Initialization/linux-initialization-8.md @@ -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);