From b5c2dc0a0cddd2fe83b98fd878196b9e46595cd1 Mon Sep 17 00:00:00 2001 From: Sebastian Fricke Date: Wed, 26 Aug 2020 13:17:00 +0200 Subject: [PATCH] Fix display text for github link s/"kernel/cgroup.c"/"kernel/cgroup/cgroup.c"/ Signed-off-by: Sebastian Fricke --- Cgroups/linux-cgroups-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cgroups/linux-cgroups-1.md b/Cgroups/linux-cgroups-1.md index 6644e96..7597eef 100644 --- a/Cgroups/linux-cgroups-1.md +++ b/Cgroups/linux-cgroups-1.md @@ -226,7 +226,7 @@ Early initialization of `cgroups` starts from the call of the: cgroup_init_early(); ``` -function in the [init/main.c](https://github.com/torvalds/linux/blob/16f73eb02d7e1765ccab3d2018e0bd98eb93d973/init/main.c) during early initialization of the Linux kernel. This function is defined in the [kernel/cgroup.c](https://github.com/torvalds/linux/blob/master/kernel/cgroup/cgroup.c) source code file and starts from the definition of two following local variables: +function in the [init/main.c](https://github.com/torvalds/linux/blob/16f73eb02d7e1765ccab3d2018e0bd98eb93d973/init/main.c) during early initialization of the Linux kernel. This function is defined in the [kernel/cgroup/cgroup.c](https://github.com/torvalds/linux/blob/master/kernel/cgroup/cgroup.c) source code file and starts from the definition of two following local variables: ```C int __init cgroup_init_early(void)