if (!zalloc_cpumask_var(&saved_cpumask, GFP_KERNEL))
                return -ENOMEM;
 
-       /*
-        * Not excluding isolated cpus on purpose.
-        * If the user wishes to include them, we allow that.
-        */
        cpumask_and(cpumask, cpumask, cpu_possible_mask);
        if (!cpumask_empty(cpumask)) {
                apply_wqattrs_lock();
        WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
 
        BUG_ON(!alloc_cpumask_var(&wq_unbound_cpumask, GFP_KERNEL));
-       cpumask_andnot(wq_unbound_cpumask, cpu_possible_mask, cpu_isolated_map);
+       cpumask_copy(wq_unbound_cpumask, cpu_possible_mask);
 
        pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);