* be executing on any CPU.  The pool behaves as an unbound one.
         *
         * Note that DISASSOCIATED should be flipped only while holding
-        * attach_mutex to avoid changing binding state while
+        * wq_pool_attach_mutex to avoid changing binding state while
         * worker_attach_to_pool() is in progress.
         */
        POOL_MANAGER_ACTIVE     = 1 << 0,       /* being managed */
  *    cpu or grabbing pool->lock is enough for read access.  If
  *    POOL_DISASSOCIATED is set, it's identical to L.
  *
- * A: pool->attach_mutex protected.
+ * A: wq_pool_attach_mutex protected.
  *
  * PL: wq_pool_mutex protected.
  *
                                                /* L: hash of busy workers */
 
        struct worker           *manager;       /* L: purely informational */
-       struct mutex            attach_mutex;   /* attach/detach exclusion */
        struct list_head        workers;        /* A: attached workers */
        struct completion       *detach_completion; /* all workers detached */
 
 static struct workqueue_attrs *wq_update_unbound_numa_attrs_buf;
 
 static DEFINE_MUTEX(wq_pool_mutex);    /* protects pools and workqueues list */
+static DEFINE_MUTEX(wq_pool_attach_mutex); /* protects worker attach/detach */
 static DEFINE_SPINLOCK(wq_mayday_lock);        /* protects wq->maydays list */
 static DECLARE_WAIT_QUEUE_HEAD(wq_manager_wait); /* wait for manager to go away */
 
  * @worker: iteration cursor
  * @pool: worker_pool to iterate workers of
  *
- * This must be called with @pool->attach_mutex.
+ * This must be called with wq_pool_attach_mutex.
  *
  * The if/else clause exists only for the lockdep assertion and can be
  * ignored.
  */
 #define for_each_pool_worker(worker, pool)                             \
        list_for_each_entry((worker), &(pool)->workers, node)           \
-               if (({ lockdep_assert_held(&pool->attach_mutex); false; })) { } \
+               if (({ lockdep_assert_held(&wq_pool_attach_mutex); false; })) { } \
                else
 
 /**
 static void worker_attach_to_pool(struct worker *worker,
                                   struct worker_pool *pool)
 {
-       mutex_lock(&pool->attach_mutex);
+       mutex_lock(&wq_pool_attach_mutex);
 
        /*
         * set_cpus_allowed_ptr() will fail if the cpumask doesn't have any
        set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask);
 
        /*
-        * The pool->attach_mutex ensures %POOL_DISASSOCIATED remains
-        * stable across this function.  See the comments above the
-        * flag definition for details.
+        * The wq_pool_attach_mutex ensures %POOL_DISASSOCIATED remains
+        * stable across this function.  See the comments above the flag
+        * definition for details.
         */
        if (pool->flags & POOL_DISASSOCIATED)
                worker->flags |= WORKER_UNBOUND;
 
        list_add_tail(&worker->node, &pool->workers);
 
-       mutex_unlock(&pool->attach_mutex);
+       mutex_unlock(&wq_pool_attach_mutex);
 }
 
 /**
 {
        struct completion *detach_completion = NULL;
 
-       mutex_lock(&pool->attach_mutex);
+       mutex_lock(&wq_pool_attach_mutex);
        list_del(&worker->node);
        if (list_empty(&pool->workers))
                detach_completion = pool->detach_completion;
-       mutex_unlock(&pool->attach_mutex);
+       mutex_unlock(&wq_pool_attach_mutex);
 
        /* clear leftover flags without pool->lock after it is detached */
        worker->flags &= ~(WORKER_UNBOUND | WORKER_REBOUND);
 
        timer_setup(&pool->mayday_timer, pool_mayday_timeout, 0);
 
-       mutex_init(&pool->attach_mutex);
        INIT_LIST_HEAD(&pool->workers);
 
        ida_init(&pool->worker_ida);
        WARN_ON(pool->nr_workers || pool->nr_idle);
        spin_unlock_irq(&pool->lock);
 
-       mutex_lock(&pool->attach_mutex);
+       mutex_lock(&wq_pool_attach_mutex);
        if (!list_empty(&pool->workers))
                pool->detach_completion = &detach_completion;
-       mutex_unlock(&pool->attach_mutex);
+       mutex_unlock(&wq_pool_attach_mutex);
 
        if (pool->detach_completion)
                wait_for_completion(pool->detach_completion);
        struct worker *worker;
 
        for_each_cpu_worker_pool(pool, cpu) {
-               mutex_lock(&pool->attach_mutex);
+               mutex_lock(&wq_pool_attach_mutex);
                spin_lock_irq(&pool->lock);
 
                /*
                pool->flags |= POOL_DISASSOCIATED;
 
                spin_unlock_irq(&pool->lock);
-               mutex_unlock(&pool->attach_mutex);
+               mutex_unlock(&wq_pool_attach_mutex);
 
                /*
                 * Call schedule() so that we cross rq->lock and thus can
 {
        struct worker *worker;
 
-       lockdep_assert_held(&pool->attach_mutex);
+       lockdep_assert_held(&wq_pool_attach_mutex);
 
        /*
         * Restore CPU affinity of all workers.  As all idle workers should
        static cpumask_t cpumask;
        struct worker *worker;
 
-       lockdep_assert_held(&pool->attach_mutex);
+       lockdep_assert_held(&wq_pool_attach_mutex);
 
        /* is @cpu allowed for @pool? */
        if (!cpumask_test_cpu(cpu, pool->attrs->cpumask))
        mutex_lock(&wq_pool_mutex);
 
        for_each_pool(pool, pi) {
-               mutex_lock(&pool->attach_mutex);
+               mutex_lock(&wq_pool_attach_mutex);
 
                if (pool->cpu == cpu)
                        rebind_workers(pool);
                else if (pool->cpu < 0)
                        restore_unbound_workers_cpumask(pool, cpu);
 
-               mutex_unlock(&pool->attach_mutex);
+               mutex_unlock(&wq_pool_attach_mutex);
        }
 
        /* update NUMA affinity of unbound workqueues */