Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-5.18-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup

Pull cgroup fix from Tejun Heo:
"Waiman's fix for a cgroup2 cpuset bug where it could miss nodes which
were hot-added"

* 'for-5.18-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup:
cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp()

+5 -2
+5 -2
kernel/cgroup/cpuset.c
··· 3390 3390 */ 3391 3391 void __init cpuset_init_smp(void) 3392 3392 { 3393 - cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask); 3394 - top_cpuset.mems_allowed = node_states[N_MEMORY]; 3393 + /* 3394 + * cpus_allowd/mems_allowed set to v2 values in the initial 3395 + * cpuset_bind() call will be reset to v1 values in another 3396 + * cpuset_bind() call when v1 cpuset is mounted. 3397 + */ 3395 3398 top_cpuset.old_mems_allowed = top_cpuset.mems_allowed; 3396 3399 3397 3400 cpumask_copy(top_cpuset.effective_cpus, cpu_active_mask);