* [PATCH] cpuset: hotplug documentation fix
@ 2008-09-05 3:43 Li Zefan
2008-09-05 4:29 ` Paul Jackson
0 siblings, 1 reply; 5+ messages in thread
From: Li Zefan @ 2008-09-05 3:43 UTC (permalink / raw)
To: Andrew Morton; +Cc: Paul Jackson, Paul Menage, LKML
If all the cpus/mems in a cpuset are offlined, the tasks in it will
be moved to the nearest ancestor with non-empty cpus/mems.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
Documentation/cpusets.txt | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/Documentation/cpusets.txt b/Documentation/cpusets.txt
index 1f5a924..871c1dd 100644
--- a/Documentation/cpusets.txt
+++ b/Documentation/cpusets.txt
@@ -635,14 +635,16 @@ prior 'mems' setting, will not be moved.
There is an exception to the above. If hotplug functionality is used
to remove all the CPUs that are currently assigned to a cpuset,
-then the kernel will automatically update the cpus_allowed of all
-tasks attached to CPUs in that cpuset to allow all CPUs. When memory
-hotplug functionality for removing Memory Nodes is available, a
-similar exception is expected to apply there as well. In general,
-the kernel prefers to violate cpuset placement, over starving a task
-that has had all its allowed CPUs or Memory Nodes taken offline. User
-code should reconfigure cpusets to only refer to online CPUs and Memory
-Nodes when using hotplug to add or remove such resources.
+then all the tasks in that cpuset will be moved to the nearest ancestor
+with non-empty cpus. But the moving of some (or all) tasks might fail if
+cpuset is binded with another cgroup subsystem which has some restrictions
+on task attaching. In this failing case, those tasks will stay
+in the original cpuset, and the kernel will automatically update
+their cpus_allowed to allow all online CPUs. When memory hotplug
+functionality for removing Memory Nodes is available, a similar exception
+is expected to apply there as well. In general, the kernel prefers to
+violate cpuset placement, over starving a task that has had all
+its allowed CPUs or Memory Nodes taken offline.
There is a second exception to the above. GFP_ATOMIC requests are
kernel internal allocations that must be satisfied, immediately.
--
1.5.4.rc3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] cpuset: hotplug documentation fix
2008-09-05 3:43 [PATCH] cpuset: hotplug documentation fix Li Zefan
@ 2008-09-05 4:29 ` Paul Jackson
2008-09-05 5:08 ` Li Zefan
2008-09-05 5:12 ` [PATCH -v2] " Li Zefan
0 siblings, 2 replies; 5+ messages in thread
From: Paul Jackson @ 2008-09-05 4:29 UTC (permalink / raw)
To: Li Zefan; +Cc: akpm, menage, linux-kernel, jh
Thanks for updating this, Li Zefan.
I would suggest one minor wording fix. The past tense of bind is bound.
(Don't you just love how regular the English language is ;)?
So, replace:
+cpuset is binded with another cgroup subsystem which has some restrictions
with:
+cpuset is bound with another cgroup subsystem which has some restrictions
Either way:
Acked-by: Paul Jackson <pj@sgi.com>
--
I won't rest till it's the best ...
Programmer, Linux Scalability
Paul Jackson <pj@sgi.com> 1.940.382.4214
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] cpuset: hotplug documentation fix
2008-09-05 4:29 ` Paul Jackson
@ 2008-09-05 5:08 ` Li Zefan
2008-09-05 5:18 ` Paul Jackson
2008-09-05 5:12 ` [PATCH -v2] " Li Zefan
1 sibling, 1 reply; 5+ messages in thread
From: Li Zefan @ 2008-09-05 5:08 UTC (permalink / raw)
To: Paul Jackson; +Cc: akpm, menage, linux-kernel, jh
Paul Jackson wrote:
> Thanks for updating this, Li Zefan.
>
> I would suggest one minor wording fix. The past tense of bind is bound.
> (Don't you just love how regular the English language is ;)?
>
wiki:
binded
1. (nonstandard) Bound; simple past tense and past participle of bind.
google binded gave me 405,000 items. :)
I'll fix it and resend the patch
> So, replace:
> +cpuset is binded with another cgroup subsystem which has some restrictions
> with:
> +cpuset is bound with another cgroup subsystem which has some restrictions
>
> Either way:
>
> Acked-by: Paul Jackson <pj@sgi.com>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH -v2] cpuset: hotplug documentation fix
2008-09-05 4:29 ` Paul Jackson
2008-09-05 5:08 ` Li Zefan
@ 2008-09-05 5:12 ` Li Zefan
1 sibling, 0 replies; 5+ messages in thread
From: Li Zefan @ 2008-09-05 5:12 UTC (permalink / raw)
To: akpm; +Cc: Paul Jackson, menage, linux-kernel, jh
If all the cpus in a cpuset are offlined, the tasks in it will
be moved to the nearest ancestor with non-empty cpus.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Acked-by: Paul Jackson <pj@sgi.com>
---
fixed a typo: s/binded/bound
--
Documentation/cpusets.txt | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/Documentation/cpusets.txt b/Documentation/cpusets.txt
index 1f5a924..47e568a 100644
--- a/Documentation/cpusets.txt
+++ b/Documentation/cpusets.txt
@@ -635,14 +635,16 @@ prior 'mems' setting, will not be moved.
There is an exception to the above. If hotplug functionality is used
to remove all the CPUs that are currently assigned to a cpuset,
-then the kernel will automatically update the cpus_allowed of all
-tasks attached to CPUs in that cpuset to allow all CPUs. When memory
-hotplug functionality for removing Memory Nodes is available, a
-similar exception is expected to apply there as well. In general,
-the kernel prefers to violate cpuset placement, over starving a task
-that has had all its allowed CPUs or Memory Nodes taken offline. User
-code should reconfigure cpusets to only refer to online CPUs and Memory
-Nodes when using hotplug to add or remove such resources.
+then all the tasks in that cpuset will be moved to the nearest ancestor
+with non-empty cpus. But the moving of some (or all) tasks might fail if
+cpuset is bound with another cgroup subsystem which has some restrictions
+on task attaching. In this failing case, those tasks will stay
+in the original cpuset, and the kernel will automatically update
+their cpus_allowed to allow all online CPUs. When memory hotplug
+functionality for removing Memory Nodes is available, a similar exception
+is expected to apply there as well. In general, the kernel prefers to
+violate cpuset placement, over starving a task that has had all
+its allowed CPUs or Memory Nodes taken offline.
There is a second exception to the above. GFP_ATOMIC requests are
kernel internal allocations that must be satisfied, immediately.
--
1.5.4.rc3
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-09-05 5:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-05 3:43 [PATCH] cpuset: hotplug documentation fix Li Zefan
2008-09-05 4:29 ` Paul Jackson
2008-09-05 5:08 ` Li Zefan
2008-09-05 5:18 ` Paul Jackson
2008-09-05 5:12 ` [PATCH -v2] " Li Zefan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox