mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 20:24:12 +08:00
Merge branch 'for-6.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq into for-6.8
cgroup/for-6.8 is carrying two workqueue changes to allow cpuset to restrict the CPUs used by unbound workqueues. Unfortunately, this conflicts with a new bug fix in wq/for-6.7-fixes. The conflict is contextual but can be a bit confusing to resolve. Pull the fix branch to resolve the conflict. Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
commit
2025956639
@ -1690,9 +1690,6 @@ static int wq_select_unbound_cpu(int cpu)
|
||||
pr_warn_once("workqueue: round-robin CPU selection forced, expect performance impact\n");
|
||||
}
|
||||
|
||||
if (cpumask_empty(wq_unbound_cpumask))
|
||||
return cpu;
|
||||
|
||||
new_cpu = __this_cpu_read(wq_rr_cpu_last);
|
||||
new_cpu = cpumask_next_and(new_cpu, wq_unbound_cpumask, cpu_online_mask);
|
||||
if (unlikely(new_cpu >= nr_cpu_ids)) {
|
||||
@ -6587,6 +6584,17 @@ static inline void wq_watchdog_init(void) { }
|
||||
|
||||
#endif /* CONFIG_WQ_WATCHDOG */
|
||||
|
||||
static void __init restrict_unbound_cpumask(const char *name, const struct cpumask *mask)
|
||||
{
|
||||
if (!cpumask_intersects(wq_unbound_cpumask, mask)) {
|
||||
pr_warn("workqueue: Restricting unbound_cpumask (%*pb) with %s (%*pb) leaves no CPU, ignoring\n",
|
||||
cpumask_pr_args(wq_unbound_cpumask), name, cpumask_pr_args(mask));
|
||||
return;
|
||||
}
|
||||
|
||||
cpumask_and(wq_unbound_cpumask, wq_unbound_cpumask, mask);
|
||||
}
|
||||
|
||||
/**
|
||||
* workqueue_init_early - early init for workqueue subsystem
|
||||
*
|
||||
@ -6608,11 +6616,13 @@ void __init workqueue_init_early(void)
|
||||
BUG_ON(!alloc_cpumask_var(&wq_unbound_cpumask, GFP_KERNEL));
|
||||
BUG_ON(!alloc_cpumask_var(&wq_requested_unbound_cpumask, GFP_KERNEL));
|
||||
BUG_ON(!zalloc_cpumask_var(&wq_isolated_cpumask, GFP_KERNEL));
|
||||
cpumask_copy(wq_unbound_cpumask, housekeeping_cpumask(HK_TYPE_WQ));
|
||||
cpumask_and(wq_unbound_cpumask, wq_unbound_cpumask, housekeeping_cpumask(HK_TYPE_DOMAIN));
|
||||
|
||||
cpumask_copy(wq_unbound_cpumask, cpu_possible_mask);
|
||||
restrict_unbound_cpumask("HK_TYPE_WQ", housekeeping_cpumask(HK_TYPE_WQ));
|
||||
restrict_unbound_cpumask("HK_TYPE_DOMAIN", housekeeping_cpumask(HK_TYPE_DOMAIN));
|
||||
if (!cpumask_empty(&wq_cmdline_cpumask))
|
||||
cpumask_and(wq_unbound_cpumask, wq_unbound_cpumask, &wq_cmdline_cpumask);
|
||||
restrict_unbound_cpumask("workqueue.unbound_cpus", &wq_cmdline_cpumask);
|
||||
|
||||
cpumask_copy(wq_requested_unbound_cpumask, wq_unbound_cpumask);
|
||||
|
||||
pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
|
||||
|
Loading…
Reference in New Issue
Block a user