Bug 218105
Summary: | Incorrect path name in description of creating a threaded cgroups tree | ||
---|---|---|---|
Product: | Documentation | Reporter: | Göran Uddeborg (goeran) |
Component: | man-pages | Assignee: | documentation_man-pages (documentation_man-pages) |
Status: | RESOLVED CODE_FIX | ||
Severity: | normal | CC: | alx |
Priority: | P3 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | Subsystem: | ||
Regression: | No | Bisected commit-id: |
Description
Göran Uddeborg
2023-11-05 12:13:45 UTC
It seems it affects more text: The second way of creating a threaded subtree is as follows: (1) In an existing cgroup, z, that currently has the type do‐ main, we (1.1) enable one or more threaded controllers and (1.2) make a process a member of z. (These two steps can be done in either order.) This has the following consequences: • The type of z becomes domain threaded. • All of the descendant cgroups of x that were not already of type threaded are converted to type domain invalid. (2) As before, we make the threaded subtree usable by writing the string "threaded" to each of the domain invalid cgroups under y, in order to convert them to the type threaded. The 'y' in (2) also seems like it should have been 'z'. Do you agree? Agreed, that must be what was intended. I'll push the following commit tomorrow. Thanks for the report! commit 09ed04875f27741e4ad111d7bcc5e93a5397903f (HEAD -> contrib, alx/contrib) Author: Alejandro Colomar <alx@kernel.org> Date: Mon Mar 4 12:45:24 2024 +0100 cgroups.7: tfix Closes: <https://bugzilla.kernel.org/show_bug.cgi?id=218105> Reported-by: Göran Uddeborg <goeran@uddeborg.se> Signed-off-by: Alejandro Colomar <alx@kernel.org> diff --git a/man7/cgroups.7 b/man7/cgroups.7 index ca10cf859..877aae03f 100644 --- a/man7/cgroups.7 +++ b/man7/cgroups.7 @@ -1441,7 +1441,7 @@ .SS Creating a threaded subtree .IR "domain threaded" . .IP \[bu] All of the descendant cgroups of -.I x +.I z that were not already of type .I threaded are converted to type @@ -1453,7 +1453,7 @@ .SS Creating a threaded subtree to each of the .I domain invalid cgroups under -.IR y , +.IR z , in order to convert them to the type .IR threaded . .P |