workqueue: rename wq_mutex to wq_pool_mutex
[pandora-kernel.git] / kernel / workqueue.c
index bc25bdf..064157e 100644 (file)
@@ -75,9 +75,10 @@ enum {
        WORKER_PREP             = 1 << 3,       /* preparing to run works */
        WORKER_CPU_INTENSIVE    = 1 << 6,       /* cpu intensive */
        WORKER_UNBOUND          = 1 << 7,       /* worker is unbound */
+       WORKER_REBOUND          = 1 << 8,       /* worker was rebound */
 
-       WORKER_NOT_RUNNING      = WORKER_PREP | WORKER_UNBOUND |
-                                 WORKER_CPU_INTENSIVE,
+       WORKER_NOT_RUNNING      = WORKER_PREP | WORKER_CPU_INTENSIVE |
+                                 WORKER_UNBOUND | WORKER_REBOUND,
 
        NR_STD_WORKER_POOLS     = 2,            /* # standard pools per cpu */
 
@@ -119,12 +120,19 @@ enum {
  *
  * F: wq->flush_mutex protected.
  *
- * W: workqueue_lock protected.
+ * MG: pool->manager_mutex and pool->lock protected.  Writes require both
+ *     locks.  Reads can happen under either lock.
  *
- * R: workqueue_lock protected for writes.  Sched-RCU protected for reads.
+ * PL: wq_pool_mutex protected.
  *
- * FR: wq->flush_mutex and workqueue_lock protected for writes.  Sched-RCU
+ * PR: wq_pool_mutex protected for writes.  Sched-RCU protected for reads.
+ *
+ * PW: pwq_lock protected.
+ *
+ * FR: wq->flush_mutex and pwq_lock protected for writes.  Sched-RCU
  *     protected for reads.
+ *
+ * MD: wq_mayday_lock protected.
  */
 
 /* struct worker is defined in workqueue_internal.h */
@@ -152,11 +160,11 @@ struct worker_pool {
        /* see manage_workers() for details on the two manager mutexes */
        struct mutex            manager_arb;    /* manager arbitration */
        struct mutex            manager_mutex;  /* manager exclusion */
-       struct ida              worker_ida;     /* L: for worker IDs */
+       struct idr              worker_idr;     /* MG: worker IDs and iteration */
 
        struct workqueue_attrs  *attrs;         /* I: worker attributes */
-       struct hlist_node       hash_node;      /* W: unbound_pool_hash node */
-       int                     refcnt;         /* W: refcnt for unbound pools */
+       struct hlist_node       hash_node;      /* PL: unbound_pool_hash node */
+       int                     refcnt;         /* PL: refcnt for unbound pools */
 
        /*
         * The current concurrency level.  As it's likely to be accessed
@@ -190,13 +198,13 @@ struct pool_workqueue {
        int                     max_active;     /* L: max active works */
        struct list_head        delayed_works;  /* L: delayed works */
        struct list_head        pwqs_node;      /* FR: node on wq->pwqs */
-       struct list_head        mayday_node;    /* W: node on wq->maydays */
+       struct list_head        mayday_node;    /* MD: node on wq->maydays */
 
        /*
         * Release of unbound pwq is punted to system_wq.  See put_pwq()
         * and pwq_unbound_release_workfn() for details.  pool_workqueue
         * itself is also sched-RCU protected so that the first pwq can be
-        * determined without grabbing workqueue_lock.
+        * determined without grabbing pwq_lock.
         */
        struct work_struct      unbound_release_work;
        struct rcu_head         rcu;
@@ -218,10 +226,10 @@ struct wq_device;
  * the appropriate worker_pool through its pool_workqueues.
  */
 struct workqueue_struct {
-       unsigned int            flags;          /* W: WQ_* flags */
+       unsigned int            flags;          /* PL: WQ_* flags */
        struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
        struct list_head        pwqs;           /* FR: all pwqs of this wq */
-       struct list_head        list;           /* W: list of all workqueues */
+       struct list_head        list;           /* PL: list of all workqueues */
 
        struct mutex            flush_mutex;    /* protects wq flushing */
        int                     work_color;     /* F: current work color */
@@ -231,11 +239,11 @@ struct workqueue_struct {
        struct list_head        flusher_queue;  /* F: flush waiters */
        struct list_head        flusher_overflow; /* F: flush overflow list */
 
-       struct list_head        maydays;        /* W: pwqs requesting rescue */
+       struct list_head        maydays;        /* MD: pwqs requesting rescue */
        struct worker           *rescuer;       /* I: rescue worker */
 
-       int                     nr_drainers;    /* W: drain in progress */
-       int                     saved_max_active; /* W: saved pwq max_active */
+       int                     nr_drainers;    /* PL: drain in progress */
+       int                     saved_max_active; /* PW: saved pwq max_active */
 
 #ifdef CONFIG_SYSFS
        struct wq_device        *wq_dev;        /* I: for sysfs interface */
@@ -248,7 +256,20 @@ struct workqueue_struct {
 
 static struct kmem_cache *pwq_cache;
 
-/* W: hash of all unbound pools keyed by pool->attrs */
+static DEFINE_MUTEX(wq_pool_mutex);    /* protects pools and workqueues list */
+static DEFINE_SPINLOCK(pwq_lock);      /* protects pool_workqueues */
+static DEFINE_SPINLOCK(wq_mayday_lock);        /* protects wq->maydays list */
+
+static LIST_HEAD(workqueues);          /* PL: list of all workqueues */
+static bool workqueue_freezing;                /* PL: have wqs started freezing? */
+
+/* the per-cpu worker pools */
+static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
+                                    cpu_worker_pools);
+
+static DEFINE_IDR(worker_pool_idr);    /* PR: idr of all pools */
+
+/* PL: hash of all unbound pools keyed by pool->attrs */
 static DEFINE_HASHTABLE(unbound_pool_hash, UNBOUND_POOL_HASH_ORDER);
 
 /* I: attributes used when instantiating standard unbound pools on demand */
@@ -265,28 +286,44 @@ EXPORT_SYMBOL_GPL(system_unbound_wq);
 struct workqueue_struct *system_freezable_wq __read_mostly;
 EXPORT_SYMBOL_GPL(system_freezable_wq);
 
+static int worker_thread(void *__worker);
+static void copy_workqueue_attrs(struct workqueue_attrs *to,
+                                const struct workqueue_attrs *from);
+
 #define CREATE_TRACE_POINTS
 #include <trace/events/workqueue.h>
 
-#define assert_rcu_or_wq_lock()                                                \
+#define assert_rcu_or_pool_mutex()                                     \
        rcu_lockdep_assert(rcu_read_lock_sched_held() ||                \
-                          lockdep_is_held(&workqueue_lock),            \
-                          "sched RCU or workqueue lock should be held")
+                          lockdep_is_held(&wq_pool_mutex),             \
+                          "sched RCU or wq_pool_mutex should be held")
+
+#define assert_rcu_or_pwq_lock()                                       \
+       rcu_lockdep_assert(rcu_read_lock_sched_held() ||                \
+                          lockdep_is_held(&pwq_lock),                  \
+                          "sched RCU or pwq_lock should be held")
+
+#ifdef CONFIG_LOCKDEP
+#define assert_manager_or_pool_lock(pool)                              \
+       WARN_ONCE(debug_locks &&                                        \
+                 !lockdep_is_held(&(pool)->manager_mutex) &&           \
+                 !lockdep_is_held(&(pool)->lock),                      \
+                 "pool->manager_mutex or ->lock should be held")
+#else
+#define assert_manager_or_pool_lock(pool)      do { } while (0)
+#endif
 
 #define for_each_cpu_worker_pool(pool, cpu)                            \
        for ((pool) = &per_cpu(cpu_worker_pools, cpu)[0];               \
             (pool) < &per_cpu(cpu_worker_pools, cpu)[NR_STD_WORKER_POOLS]; \
             (pool)++)
 
-#define for_each_busy_worker(worker, i, pool)                          \
-       hash_for_each(pool->busy_hash, i, worker, hentry)
-
 /**
  * for_each_pool - iterate through all worker_pools in the system
  * @pool: iteration cursor
  * @pi: integer used for iteration
  *
- * This must be called either with workqueue_lock held or sched RCU read
+ * This must be called either with wq_pool_mutex held or sched RCU read
  * locked.  If the pool needs to be used beyond the locking in effect, the
  * caller is responsible for guaranteeing that the pool stays online.
  *
@@ -295,7 +332,23 @@ EXPORT_SYMBOL_GPL(system_freezable_wq);
  */
 #define for_each_pool(pool, pi)                                                \
        idr_for_each_entry(&worker_pool_idr, pool, pi)                  \
-               if (({ assert_rcu_or_wq_lock(); false; })) { }          \
+               if (({ assert_rcu_or_pool_mutex(); false; })) { }       \
+               else
+
+/**
+ * for_each_pool_worker - iterate through all workers of a worker_pool
+ * @worker: iteration cursor
+ * @wi: integer used for iteration
+ * @pool: worker_pool to iterate workers of
+ *
+ * This must be called with either @pool->manager_mutex or ->lock held.
+ *
+ * The if/else clause exists only for the lockdep assertion and can be
+ * ignored.
+ */
+#define for_each_pool_worker(worker, wi, pool)                         \
+       idr_for_each_entry(&(pool)->worker_idr, (worker), (wi))         \
+               if (({ assert_manager_or_pool_lock((pool)); false; })) { } \
                else
 
 /**
@@ -303,16 +356,16 @@ EXPORT_SYMBOL_GPL(system_freezable_wq);
  * @pwq: iteration cursor
  * @wq: the target workqueue
  *
- * This must be called either with workqueue_lock held or sched RCU read
- * locked.  If the pwq needs to be used beyond the locking in effect, the
- * caller is responsible for guaranteeing that the pwq stays online.
+ * This must be called either with pwq_lock held or sched RCU read locked.
+ * If the pwq needs to be used beyond the locking in effect, the caller is
+ * responsible for guaranteeing that the pwq stays online.
  *
  * The if/else clause exists only for the lockdep assertion and can be
  * ignored.
  */
 #define for_each_pwq(pwq, wq)                                          \
        list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node)          \
-               if (({ assert_rcu_or_wq_lock(); false; })) { }          \
+               if (({ assert_rcu_or_pwq_lock(); false; })) { }         \
                else
 
 #ifdef CONFIG_DEBUG_OBJECTS_WORK
@@ -431,37 +484,17 @@ static inline void debug_work_activate(struct work_struct *work) { }
 static inline void debug_work_deactivate(struct work_struct *work) { }
 #endif
 
-/* Serializes the accesses to the list of workqueues. */
-static DEFINE_SPINLOCK(workqueue_lock);
-static LIST_HEAD(workqueues);
-static bool workqueue_freezing;                /* W: have wqs started freezing? */
-
-/* the per-cpu worker pools */
-static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
-                                    cpu_worker_pools);
-
-/*
- * R: idr of all pools.  Modifications are protected by workqueue_lock.
- * Read accesses are protected by sched-RCU protected.
- */
-static DEFINE_IDR(worker_pool_idr);
-
-static int worker_thread(void *__worker);
-static void copy_workqueue_attrs(struct workqueue_attrs *to,
-                                const struct workqueue_attrs *from);
-
 /* allocate ID and assign it to @pool */
 static int worker_pool_assign_id(struct worker_pool *pool)
 {
        int ret;
 
+       lockdep_assert_held(&wq_pool_mutex);
+
        do {
                if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL))
                        return -ENOMEM;
-
-               spin_lock_irq(&workqueue_lock);
                ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
-               spin_unlock_irq(&workqueue_lock);
        } while (ret == -EAGAIN);
 
        return ret;
@@ -471,13 +504,13 @@ static int worker_pool_assign_id(struct worker_pool *pool)
  * first_pwq - return the first pool_workqueue of the specified workqueue
  * @wq: the target workqueue
  *
- * This must be called either with workqueue_lock held or sched RCU read
- * locked.  If the pwq needs to be used beyond the locking in effect, the
- * caller is responsible for guaranteeing that the pwq stays online.
+ * This must be called either with pwq_lock held or sched RCU read locked.
+ * If the pwq needs to be used beyond the locking in effect, the caller is
+ * responsible for guaranteeing that the pwq stays online.
  */
 static struct pool_workqueue *first_pwq(struct workqueue_struct *wq)
 {
-       assert_rcu_or_wq_lock();
+       assert_rcu_or_pwq_lock();
        return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue,
                                      pwqs_node);
 }
@@ -574,9 +607,9 @@ static struct pool_workqueue *get_work_pwq(struct work_struct *work)
  *
  * Return the worker_pool @work was last associated with.  %NULL if none.
  *
- * Pools are created and destroyed under workqueue_lock, and allows read
+ * Pools are created and destroyed under wq_pool_mutex, and allows read
  * access under sched-RCU read lock.  As such, this function should be
- * called under workqueue_lock or with preemption disabled.
+ * called under wq_pool_mutex or with preemption disabled.
  *
  * All fields of the returned pool are accessible as long as the above
  * mentioned locking is in effect.  If the returned pool needs to be used
@@ -588,7 +621,7 @@ static struct worker_pool *get_work_pool(struct work_struct *work)
        unsigned long data = atomic_long_read(&work->data);
        int pool_id;
 
-       assert_rcu_or_wq_lock();
+       assert_rcu_or_pool_mutex();
 
        if (data & WORK_STRUCT_PWQ)
                return ((struct pool_workqueue *)
@@ -1578,108 +1611,6 @@ __acquires(&pool->lock)
        }
 }
 
-/*
- * Rebind an idle @worker to its CPU.  worker_thread() will test
- * list_empty(@worker->entry) before leaving idle and call this function.
- */
-static void idle_worker_rebind(struct worker *worker)
-{
-       /* CPU may go down again inbetween, clear UNBOUND only on success */
-       if (worker_maybe_bind_and_lock(worker->pool))
-               worker_clr_flags(worker, WORKER_UNBOUND);
-
-       /* rebind complete, become available again */
-       list_add(&worker->entry, &worker->pool->idle_list);
-       spin_unlock_irq(&worker->pool->lock);
-}
-
-/*
- * Function for @worker->rebind.work used to rebind unbound busy workers to
- * the associated cpu which is coming back online.  This is scheduled by
- * cpu up but can race with other cpu hotplug operations and may be
- * executed twice without intervening cpu down.
- */
-static void busy_worker_rebind_fn(struct work_struct *work)
-{
-       struct worker *worker = container_of(work, struct worker, rebind_work);
-
-       if (worker_maybe_bind_and_lock(worker->pool))
-               worker_clr_flags(worker, WORKER_UNBOUND);
-
-       spin_unlock_irq(&worker->pool->lock);
-}
-
-/**
- * rebind_workers - rebind all workers of a pool to the associated CPU
- * @pool: pool of interest
- *
- * @pool->cpu is coming online.  Rebind all workers to the CPU.  Rebinding
- * is different for idle and busy ones.
- *
- * Idle ones will be removed from the idle_list and woken up.  They will
- * add themselves back after completing rebind.  This ensures that the
- * idle_list doesn't contain any unbound workers when re-bound busy workers
- * try to perform local wake-ups for concurrency management.
- *
- * Busy workers can rebind after they finish their current work items.
- * Queueing the rebind work item at the head of the scheduled list is
- * enough.  Note that nr_running will be properly bumped as busy workers
- * rebind.
- *
- * On return, all non-manager workers are scheduled for rebind - see
- * manage_workers() for the manager special case.  Any idle worker
- * including the manager will not appear on @idle_list until rebind is
- * complete, making local wake-ups safe.
- */
-static void rebind_workers(struct worker_pool *pool)
-{
-       struct worker *worker, *n;
-       int i;
-
-       lockdep_assert_held(&pool->manager_mutex);
-       lockdep_assert_held(&pool->lock);
-
-       /* dequeue and kick idle ones */
-       list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
-               /*
-                * idle workers should be off @pool->idle_list until rebind
-                * is complete to avoid receiving premature local wake-ups.
-                */
-               list_del_init(&worker->entry);
-
-               /*
-                * worker_thread() will see the above dequeuing and call
-                * idle_worker_rebind().
-                */
-               wake_up_process(worker->task);
-       }
-
-       /* rebind busy workers */
-       for_each_busy_worker(worker, i, pool) {
-               struct work_struct *rebind_work = &worker->rebind_work;
-               struct workqueue_struct *wq;
-
-               if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
-                                    work_data_bits(rebind_work)))
-                       continue;
-
-               debug_work_activate(rebind_work);
-
-               /*
-                * wq doesn't really matter but let's keep @worker->pool
-                * and @pwq->pool consistent for sanity.
-                */
-               if (worker->pool->attrs->nice < 0)
-                       wq = system_highpri_wq;
-               else
-                       wq = system_wq;
-
-               insert_work(per_cpu_ptr(wq->cpu_pwqs, pool->cpu), rebind_work,
-                           worker->scheduled.next,
-                           work_color_to_flags(WORK_NO_COLOR));
-       }
-}
-
 static struct worker *alloc_worker(void)
 {
        struct worker *worker;
@@ -1688,7 +1619,6 @@ static struct worker *alloc_worker(void)
        if (worker) {
                INIT_LIST_HEAD(&worker->entry);
                INIT_LIST_HEAD(&worker->scheduled);
-               INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
                /* on creation a worker is in !idle && prep state */
                worker->flags = WORKER_PREP;
        }
@@ -1715,14 +1645,21 @@ static struct worker *create_worker(struct worker_pool *pool)
        struct worker *worker = NULL;
        int id = -1;
 
+       lockdep_assert_held(&pool->manager_mutex);
+
+       /*
+        * ID is needed to determine kthread name.  Allocate ID first
+        * without installing the pointer.
+        */
+       idr_preload(GFP_KERNEL);
        spin_lock_irq(&pool->lock);
-       while (ida_get_new(&pool->worker_ida, &id)) {
-               spin_unlock_irq(&pool->lock);
-               if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
-                       goto fail;
-               spin_lock_irq(&pool->lock);
-       }
+
+       id = idr_alloc(&pool->worker_idr, NULL, 0, 0, GFP_NOWAIT);
+
        spin_unlock_irq(&pool->lock);
+       idr_preload_end();
+       if (id < 0)
+               goto fail;
 
        worker = alloc_worker();
        if (!worker)
@@ -1749,12 +1686,8 @@ static struct worker *create_worker(struct worker_pool *pool)
        set_user_nice(worker->task, pool->attrs->nice);
        set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask);
 
-       /*
-        * %PF_THREAD_BOUND is used to prevent userland from meddling with
-        * cpumask of workqueue workers.  This is an abuse.  We need
-        * %PF_NO_SETAFFINITY.
-        */
-       worker->task->flags |= PF_THREAD_BOUND;
+       /* prevent userland from meddling with cpumask of workqueue workers */
+       worker->task->flags |= PF_NO_SETAFFINITY;
 
        /*
         * The caller is responsible for ensuring %POOL_DISASSOCIATED
@@ -1764,11 +1697,17 @@ static struct worker *create_worker(struct worker_pool *pool)
        if (pool->flags & POOL_DISASSOCIATED)
                worker->flags |= WORKER_UNBOUND;
 
+       /* successful, commit the pointer to idr */
+       spin_lock_irq(&pool->lock);
+       idr_replace(&pool->worker_idr, worker, worker->id);
+       spin_unlock_irq(&pool->lock);
+
        return worker;
+
 fail:
        if (id >= 0) {
                spin_lock_irq(&pool->lock);
-               ida_remove(&pool->worker_ida, id);
+               idr_remove(&pool->worker_idr, id);
                spin_unlock_irq(&pool->lock);
        }
        kfree(worker);
@@ -1792,6 +1731,30 @@ static void start_worker(struct worker *worker)
        wake_up_process(worker->task);
 }
 
+/**
+ * create_and_start_worker - create and start a worker for a pool
+ * @pool: the target pool
+ *
+ * Grab the managership of @pool and create and start a new worker for it.
+ */
+static int create_and_start_worker(struct worker_pool *pool)
+{
+       struct worker *worker;
+
+       mutex_lock(&pool->manager_mutex);
+
+       worker = create_worker(pool);
+       if (worker) {
+               spin_lock_irq(&pool->lock);
+               start_worker(worker);
+               spin_unlock_irq(&pool->lock);
+       }
+
+       mutex_unlock(&pool->manager_mutex);
+
+       return worker ? 0 : -ENOMEM;
+}
+
 /**
  * destroy_worker - destroy a workqueue worker
  * @worker: worker to be destroyed
@@ -1804,7 +1767,9 @@ static void start_worker(struct worker *worker)
 static void destroy_worker(struct worker *worker)
 {
        struct worker_pool *pool = worker->pool;
-       int id = worker->id;
+
+       lockdep_assert_held(&pool->manager_mutex);
+       lockdep_assert_held(&pool->lock);
 
        /* sanity check frenzy */
        if (WARN_ON(worker->current_work) ||
@@ -1819,13 +1784,14 @@ static void destroy_worker(struct worker *worker)
        list_del_init(&worker->entry);
        worker->flags |= WORKER_DIE;
 
+       idr_remove(&pool->worker_idr, worker->id);
+
        spin_unlock_irq(&pool->lock);
 
        kthread_stop(worker->task);
        kfree(worker);
 
        spin_lock_irq(&pool->lock);
-       ida_remove(&pool->worker_ida, id);
 }
 
 static void idle_worker_timeout(unsigned long __pool)
@@ -1859,7 +1825,7 @@ static void send_mayday(struct work_struct *work)
        struct pool_workqueue *pwq = get_work_pwq(work);
        struct workqueue_struct *wq = pwq->wq;
 
-       lockdep_assert_held(&workqueue_lock);
+       lockdep_assert_held(&wq_mayday_lock);
 
        if (!wq->rescuer)
                return;
@@ -1876,7 +1842,7 @@ static void pool_mayday_timeout(unsigned long __pool)
        struct worker_pool *pool = (void *)__pool;
        struct work_struct *work;
 
-       spin_lock_irq(&workqueue_lock);         /* for wq->maydays */
+       spin_lock_irq(&wq_mayday_lock);         /* for wq->maydays */
        spin_lock(&pool->lock);
 
        if (need_to_create_worker(pool)) {
@@ -1891,7 +1857,7 @@ static void pool_mayday_timeout(unsigned long __pool)
        }
 
        spin_unlock(&pool->lock);
-       spin_unlock_irq(&workqueue_lock);
+       spin_unlock_irq(&wq_mayday_lock);
 
        mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
 }
@@ -2054,22 +2020,6 @@ static bool manage_workers(struct worker *worker)
        if (unlikely(!mutex_trylock(&pool->manager_mutex))) {
                spin_unlock_irq(&pool->lock);
                mutex_lock(&pool->manager_mutex);
-               /*
-                * CPU hotplug could have happened while we were waiting
-                * for assoc_mutex.  Hotplug itself can't handle us
-                * because manager isn't either on idle or busy list, and
-                * @pool's state and ours could have deviated.
-                *
-                * As hotplug is now excluded via manager_mutex, we can
-                * simply try to bind.  It will succeed or fail depending
-                * on @pool's current state.  Try it and adjust
-                * %WORKER_UNBOUND accordingly.
-                */
-               if (worker_maybe_bind_and_lock(pool))
-                       worker->flags &= ~WORKER_UNBOUND;
-               else
-                       worker->flags |= WORKER_UNBOUND;
-
                ret = true;
        }
 
@@ -2253,19 +2203,12 @@ static int worker_thread(void *__worker)
 woke_up:
        spin_lock_irq(&pool->lock);
 
-       /* we are off idle list if destruction or rebind is requested */
-       if (unlikely(list_empty(&worker->entry))) {
+       /* am I supposed to die? */
+       if (unlikely(worker->flags & WORKER_DIE)) {
                spin_unlock_irq(&pool->lock);
-
-               /* if DIE is set, destruction is requested */
-               if (worker->flags & WORKER_DIE) {
-                       worker->task->flags &= ~PF_WQ_WORKER;
-                       return 0;
-               }
-
-               /* otherwise, rebind */
-               idle_worker_rebind(worker);
-               goto woke_up;
+               WARN_ON_ONCE(!list_empty(&worker->entry));
+               worker->task->flags &= ~PF_WQ_WORKER;
+               return 0;
        }
 
        worker_leave_idle(worker);
@@ -2286,11 +2229,13 @@ recheck:
        WARN_ON_ONCE(!list_empty(&worker->scheduled));
 
        /*
-        * When control reaches this point, we're guaranteed to have
-        * at least one idle worker or that someone else has already
-        * assumed the manager role.
+        * Finish PREP stage.  We're guaranteed to have at least one idle
+        * worker or that someone else has already assumed the manager
+        * role.  This is where @worker starts participating in concurrency
+        * management if applicable and concurrency management is restored
+        * after being rebound.  See rebind_workers() for details.
         */
-       worker_clr_flags(worker, WORKER_PREP);
+       worker_clr_flags(worker, WORKER_PREP | WORKER_REBOUND);
 
        do {
                struct work_struct *work =
@@ -2369,7 +2314,7 @@ repeat:
        }
 
        /* see whether any pwq is asking for help */
-       spin_lock_irq(&workqueue_lock);
+       spin_lock_irq(&wq_mayday_lock);
 
        while (!list_empty(&wq->maydays)) {
                struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
@@ -2380,7 +2325,7 @@ repeat:
                __set_current_state(TASK_RUNNING);
                list_del_init(&pwq->mayday_node);
 
-               spin_unlock_irq(&workqueue_lock);
+               spin_unlock_irq(&wq_mayday_lock);
 
                /* migrate to the target cpu if possible */
                worker_maybe_bind_and_lock(pool);
@@ -2407,10 +2352,10 @@ repeat:
 
                rescuer->pool = NULL;
                spin_unlock(&pool->lock);
-               spin_lock(&workqueue_lock);
+               spin_lock(&wq_mayday_lock);
        }
 
-       spin_unlock_irq(&workqueue_lock);
+       spin_unlock_irq(&wq_mayday_lock);
 
        /* rescuers should never participate in concurrency management */
        WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
@@ -2739,10 +2684,10 @@ void drain_workqueue(struct workqueue_struct *wq)
         * hotter than drain_workqueue() and already looks at @wq->flags.
         * Use __WQ_DRAINING so that queue doesn't have to check nr_drainers.
         */
-       spin_lock_irq(&workqueue_lock);
+       mutex_lock(&wq_pool_mutex);
        if (!wq->nr_drainers++)
                wq->flags |= __WQ_DRAINING;
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
 reflush:
        flush_workqueue(wq);
 
@@ -2767,12 +2712,12 @@ reflush:
                goto reflush;
        }
 
-       spin_lock(&workqueue_lock);
+       local_irq_enable();
+
+       mutex_lock(&wq_pool_mutex);
        if (!--wq->nr_drainers)
                wq->flags &= ~__WQ_DRAINING;
-       spin_unlock(&workqueue_lock);
-
-       local_irq_enable();
+       mutex_unlock(&wq_pool_mutex);
 }
 EXPORT_SYMBOL_GPL(drain_workqueue);
 
@@ -3451,7 +3396,7 @@ static int init_worker_pool(struct worker_pool *pool)
 
        mutex_init(&pool->manager_arb);
        mutex_init(&pool->manager_mutex);
-       ida_init(&pool->worker_ida);
+       idr_init(&pool->worker_idr);
 
        INIT_HLIST_NODE(&pool->hash_node);
        pool->refcnt = 1;
@@ -3467,7 +3412,7 @@ static void rcu_free_pool(struct rcu_head *rcu)
 {
        struct worker_pool *pool = container_of(rcu, struct worker_pool, rcu);
 
-       ida_destroy(&pool->worker_ida);
+       idr_destroy(&pool->worker_idr);
        free_workqueue_attrs(pool->attrs);
        kfree(pool);
 }
@@ -3485,16 +3430,16 @@ static void put_unbound_pool(struct worker_pool *pool)
 {
        struct worker *worker;
 
-       spin_lock_irq(&workqueue_lock);
+       mutex_lock(&wq_pool_mutex);
        if (--pool->refcnt) {
-               spin_unlock_irq(&workqueue_lock);
+               mutex_unlock(&wq_pool_mutex);
                return;
        }
 
        /* sanity checks */
        if (WARN_ON(!(pool->flags & POOL_DISASSOCIATED)) ||
            WARN_ON(!list_empty(&pool->worklist))) {
-               spin_unlock_irq(&workqueue_lock);
+               mutex_unlock(&wq_pool_mutex);
                return;
        }
 
@@ -3503,7 +3448,7 @@ static void put_unbound_pool(struct worker_pool *pool)
                idr_remove(&worker_pool_idr, pool->id);
        hash_del(&pool->hash_node);
 
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
 
        /*
         * Become the manager and destroy all workers.  Grabbing
@@ -3511,6 +3456,7 @@ static void put_unbound_pool(struct worker_pool *pool)
         * manager_mutex.
         */
        mutex_lock(&pool->manager_arb);
+       mutex_lock(&pool->manager_mutex);
        spin_lock_irq(&pool->lock);
 
        while ((worker = first_worker(pool)))
@@ -3518,6 +3464,7 @@ static void put_unbound_pool(struct worker_pool *pool)
        WARN_ON(pool->nr_workers || pool->nr_idle);
 
        spin_unlock_irq(&pool->lock);
+       mutex_unlock(&pool->manager_mutex);
        mutex_unlock(&pool->manager_arb);
 
        /* shut down the timers */
@@ -3539,28 +3486,27 @@ static void put_unbound_pool(struct worker_pool *pool)
  */
 static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
 {
-       static DEFINE_MUTEX(create_mutex);
        u32 hash = wqattrs_hash(attrs);
        struct worker_pool *pool;
-       struct worker *worker;
 
-       mutex_lock(&create_mutex);
+       mutex_lock(&wq_pool_mutex);
 
        /* do we already have a matching pool? */
-       spin_lock_irq(&workqueue_lock);
        hash_for_each_possible(unbound_pool_hash, pool, hash_node, hash) {
                if (wqattrs_equal(pool->attrs, attrs)) {
                        pool->refcnt++;
                        goto out_unlock;
                }
        }
-       spin_unlock_irq(&workqueue_lock);
 
        /* nope, create a new one */
        pool = kzalloc(sizeof(*pool), GFP_KERNEL);
        if (!pool || init_worker_pool(pool) < 0)
                goto fail;
 
+       if (workqueue_freezing)
+               pool->flags |= POOL_FREEZING;
+
        lockdep_set_subclass(&pool->lock, 1);   /* see put_pwq() */
        copy_workqueue_attrs(pool->attrs, attrs);
 
@@ -3568,23 +3514,16 @@ static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
                goto fail;
 
        /* create and start the initial worker */
-       worker = create_worker(pool);
-       if (!worker)
+       if (create_and_start_worker(pool) < 0)
                goto fail;
 
-       spin_lock_irq(&pool->lock);
-       start_worker(worker);
-       spin_unlock_irq(&pool->lock);
-
        /* install */
-       spin_lock_irq(&workqueue_lock);
        hash_add(unbound_pool_hash, &pool->hash_node, hash);
 out_unlock:
-       spin_unlock_irq(&workqueue_lock);
-       mutex_unlock(&create_mutex);
+       mutex_unlock(&wq_pool_mutex);
        return pool;
 fail:
-       mutex_unlock(&create_mutex);
+       mutex_unlock(&wq_pool_mutex);
        if (pool)
                put_unbound_pool(pool);
        return NULL;
@@ -3616,9 +3555,9 @@ static void pwq_unbound_release_workfn(struct work_struct *work)
         * and consistent with the linking path.
         */
        mutex_lock(&wq->flush_mutex);
-       spin_lock_irq(&workqueue_lock);
+       spin_lock_irq(&pwq_lock);
        list_del_rcu(&pwq->pwqs_node);
-       spin_unlock_irq(&workqueue_lock);
+       spin_unlock_irq(&pwq_lock);
        mutex_unlock(&wq->flush_mutex);
 
        put_unbound_pool(pool);
@@ -3646,7 +3585,7 @@ static void pwq_adjust_max_active(struct pool_workqueue *pwq)
        bool freezable = wq->flags & WQ_FREEZABLE;
 
        /* for @wq->saved_max_active */
-       lockdep_assert_held(&workqueue_lock);
+       lockdep_assert_held(&pwq_lock);
 
        /* fast exit for non-freezable wqs */
        if (!freezable && pwq->max_active == wq->saved_max_active)
@@ -3660,6 +3599,12 @@ static void pwq_adjust_max_active(struct pool_workqueue *pwq)
                while (!list_empty(&pwq->delayed_works) &&
                       pwq->nr_active < pwq->max_active)
                        pwq_activate_first_delayed(pwq);
+
+               /*
+                * Need to kick a worker after thawed or an unbound wq's
+                * max_active is bumped.  It's a slow path.  Do it always.
+                */
+               wake_up_worker(pwq->pool);
        } else {
                pwq->max_active = 0;
        }
@@ -3683,7 +3628,7 @@ static void init_and_link_pwq(struct pool_workqueue *pwq,
        INIT_WORK(&pwq->unbound_release_work, pwq_unbound_release_workfn);
 
        mutex_lock(&wq->flush_mutex);
-       spin_lock_irq(&workqueue_lock);
+       spin_lock_irq(&pwq_lock);
 
        /*
         * Set the matching work_color.  This is synchronized with
@@ -3699,7 +3644,7 @@ static void init_and_link_pwq(struct pool_workqueue *pwq,
        /* link in @pwq */
        list_add_rcu(&pwq->pwqs_node, &wq->pwqs);
 
-       spin_unlock_irq(&workqueue_lock);
+       spin_unlock_irq(&pwq_lock);
        mutex_unlock(&wq->flush_mutex);
 }
 
@@ -3850,7 +3795,7 @@ struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
                }
 
                wq->rescuer = rescuer;
-               rescuer->task->flags |= PF_THREAD_BOUND;
+               rescuer->task->flags |= PF_NO_SETAFFINITY;
                wake_up_process(rescuer->task);
        }
 
@@ -3858,18 +3803,20 @@ struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
                goto err_destroy;
 
        /*
-        * workqueue_lock protects global freeze state and workqueues list.
-        * Grab it, adjust max_active and add the new workqueue to
-        * workqueues list.
+        * wq_pool_mutex protects global freeze state and workqueues list.
+        * Grab it, adjust max_active and add the new @wq to workqueues
+        * list.
         */
-       spin_lock_irq(&workqueue_lock);
+       mutex_lock(&wq_pool_mutex);
 
+       spin_lock_irq(&pwq_lock);
        for_each_pwq(pwq, wq)
                pwq_adjust_max_active(pwq);
+       spin_unlock_irq(&pwq_lock);
 
        list_add(&wq->list, &workqueues);
 
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
 
        return wq;
 
@@ -3895,15 +3842,14 @@ void destroy_workqueue(struct workqueue_struct *wq)
        /* drain it before proceeding with destruction */
        drain_workqueue(wq);
 
-       spin_lock_irq(&workqueue_lock);
-
        /* sanity checks */
+       spin_lock_irq(&pwq_lock);
        for_each_pwq(pwq, wq) {
                int i;
 
                for (i = 0; i < WORK_NR_COLORS; i++) {
                        if (WARN_ON(pwq->nr_in_flight[i])) {
-                               spin_unlock_irq(&workqueue_lock);
+                               spin_unlock_irq(&pwq_lock);
                                return;
                        }
                }
@@ -3911,18 +3857,19 @@ void destroy_workqueue(struct workqueue_struct *wq)
                if (WARN_ON(pwq->refcnt > 1) ||
                    WARN_ON(pwq->nr_active) ||
                    WARN_ON(!list_empty(&pwq->delayed_works))) {
-                       spin_unlock_irq(&workqueue_lock);
+                       spin_unlock_irq(&pwq_lock);
                        return;
                }
        }
+       spin_unlock_irq(&pwq_lock);
 
        /*
         * wq list is used to freeze wq, remove from list after
         * flushing is complete in case freeze races us.
         */
+       mutex_lock(&wq_pool_mutex);
        list_del_init(&wq->list);
-
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
 
        workqueue_sysfs_unregister(wq);
 
@@ -3976,14 +3923,14 @@ void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
 
        max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
 
-       spin_lock_irq(&workqueue_lock);
+       spin_lock_irq(&pwq_lock);
 
        wq->saved_max_active = max_active;
 
        for_each_pwq(pwq, wq)
                pwq_adjust_max_active(pwq);
 
-       spin_unlock_irq(&workqueue_lock);
+       spin_unlock_irq(&pwq_lock);
 }
 EXPORT_SYMBOL_GPL(workqueue_set_max_active);
 
@@ -3997,7 +3944,7 @@ bool current_is_workqueue_rescuer(void)
 {
        struct worker *worker = current_wq_worker();
 
-       return worker && worker == worker->current_pwq->wq->rescuer;
+       return worker && worker->rescue_wq;
 }
 
 /**
@@ -4017,7 +3964,7 @@ bool workqueue_congested(int cpu, struct workqueue_struct *wq)
        struct pool_workqueue *pwq;
        bool ret;
 
-       preempt_disable();
+       rcu_read_lock_sched();
 
        if (!(wq->flags & WQ_UNBOUND))
                pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
@@ -4025,7 +3972,7 @@ bool workqueue_congested(int cpu, struct workqueue_struct *wq)
                pwq = first_pwq(wq);
 
        ret = !list_empty(&pwq->delayed_works);
-       preempt_enable();
+       rcu_read_unlock_sched();
 
        return ret;
 }
@@ -4085,7 +4032,7 @@ static void wq_unbind_fn(struct work_struct *work)
        int cpu = smp_processor_id();
        struct worker_pool *pool;
        struct worker *worker;
-       int i;
+       int wi;
 
        for_each_cpu_worker_pool(pool, cpu) {
                WARN_ON_ONCE(cpu != smp_processor_id());
@@ -4100,10 +4047,7 @@ static void wq_unbind_fn(struct work_struct *work)
                 * before the last CPU down must be on the cpu.  After
                 * this, they may become diasporas.
                 */
-               list_for_each_entry(worker, &pool->idle_list, entry)
-                       worker->flags |= WORKER_UNBOUND;
-
-               for_each_busy_worker(worker, i, pool)
+               for_each_pool_worker(worker, wi, pool)
                        worker->flags |= WORKER_UNBOUND;
 
                pool->flags |= POOL_DISASSOCIATED;
@@ -4134,6 +4078,103 @@ static void wq_unbind_fn(struct work_struct *work)
                atomic_set(&pool->nr_running, 0);
 }
 
+/**
+ * rebind_workers - rebind all workers of a pool to the associated CPU
+ * @pool: pool of interest
+ *
+ * @pool->cpu is coming online.  Rebind all workers to the CPU.
+ */
+static void rebind_workers(struct worker_pool *pool)
+{
+       struct worker *worker;
+       int wi;
+
+       lockdep_assert_held(&pool->manager_mutex);
+
+       /*
+        * Restore CPU affinity of all workers.  As all idle workers should
+        * be on the run-queue of the associated CPU before any local
+        * wake-ups for concurrency management happen, restore CPU affinty
+        * of all workers first and then clear UNBOUND.  As we're called
+        * from CPU_ONLINE, the following shouldn't fail.
+        */
+       for_each_pool_worker(worker, wi, pool)
+               WARN_ON_ONCE(set_cpus_allowed_ptr(worker->task,
+                                                 pool->attrs->cpumask) < 0);
+
+       spin_lock_irq(&pool->lock);
+
+       for_each_pool_worker(worker, wi, pool) {
+               unsigned int worker_flags = worker->flags;
+
+               /*
+                * A bound idle worker should actually be on the runqueue
+                * of the associated CPU for local wake-ups targeting it to
+                * work.  Kick all idle workers so that they migrate to the
+                * associated CPU.  Doing this in the same loop as
+                * replacing UNBOUND with REBOUND is safe as no worker will
+                * be bound before @pool->lock is released.
+                */
+               if (worker_flags & WORKER_IDLE)
+                       wake_up_process(worker->task);
+
+               /*
+                * We want to clear UNBOUND but can't directly call
+                * worker_clr_flags() or adjust nr_running.  Atomically
+                * replace UNBOUND with another NOT_RUNNING flag REBOUND.
+                * @worker will clear REBOUND using worker_clr_flags() when
+                * it initiates the next execution cycle thus restoring
+                * concurrency management.  Note that when or whether
+                * @worker clears REBOUND doesn't affect correctness.
+                *
+                * ACCESS_ONCE() is necessary because @worker->flags may be
+                * tested without holding any lock in
+                * wq_worker_waking_up().  Without it, NOT_RUNNING test may
+                * fail incorrectly leading to premature concurrency
+                * management operations.
+                */
+               WARN_ON_ONCE(!(worker_flags & WORKER_UNBOUND));
+               worker_flags |= WORKER_REBOUND;
+               worker_flags &= ~WORKER_UNBOUND;
+               ACCESS_ONCE(worker->flags) = worker_flags;
+       }
+
+       spin_unlock_irq(&pool->lock);
+}
+
+/**
+ * restore_unbound_workers_cpumask - restore cpumask of unbound workers
+ * @pool: unbound pool of interest
+ * @cpu: the CPU which is coming up
+ *
+ * An unbound pool may end up with a cpumask which doesn't have any online
+ * CPUs.  When a worker of such pool get scheduled, the scheduler resets
+ * its cpus_allowed.  If @cpu is in @pool's cpumask which didn't have any
+ * online CPU before, cpus_allowed of all its workers should be restored.
+ */
+static void restore_unbound_workers_cpumask(struct worker_pool *pool, int cpu)
+{
+       static cpumask_t cpumask;
+       struct worker *worker;
+       int wi;
+
+       lockdep_assert_held(&pool->manager_mutex);
+
+       /* is @cpu allowed for @pool? */
+       if (!cpumask_test_cpu(cpu, pool->attrs->cpumask))
+               return;
+
+       /* is @cpu the only online CPU? */
+       cpumask_and(&cpumask, pool->attrs->cpumask, cpu_online_mask);
+       if (cpumask_weight(&cpumask) != 1)
+               return;
+
+       /* as we're called from CPU_ONLINE, the following shouldn't fail */
+       for_each_pool_worker(worker, wi, pool)
+               WARN_ON_ONCE(set_cpus_allowed_ptr(worker->task,
+                                                 pool->attrs->cpumask) < 0);
+}
+
 /*
  * Workqueues should be brought up before normal priority CPU notifiers.
  * This will be registered high priority CPU notifier.
@@ -4144,37 +4185,39 @@ static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
 {
        int cpu = (unsigned long)hcpu;
        struct worker_pool *pool;
+       int pi;
 
        switch (action & ~CPU_TASKS_FROZEN) {
        case CPU_UP_PREPARE:
                for_each_cpu_worker_pool(pool, cpu) {
-                       struct worker *worker;
-
                        if (pool->nr_workers)
                                continue;
-
-                       worker = create_worker(pool);
-                       if (!worker)
+                       if (create_and_start_worker(pool) < 0)
                                return NOTIFY_BAD;
-
-                       spin_lock_irq(&pool->lock);
-                       start_worker(worker);
-                       spin_unlock_irq(&pool->lock);
                }
                break;
 
        case CPU_DOWN_FAILED:
        case CPU_ONLINE:
-               for_each_cpu_worker_pool(pool, cpu) {
+               mutex_lock(&wq_pool_mutex);
+
+               for_each_pool(pool, pi) {
                        mutex_lock(&pool->manager_mutex);
-                       spin_lock_irq(&pool->lock);
 
-                       pool->flags &= ~POOL_DISASSOCIATED;
-                       rebind_workers(pool);
+                       if (pool->cpu == cpu) {
+                               spin_lock_irq(&pool->lock);
+                               pool->flags &= ~POOL_DISASSOCIATED;
+                               spin_unlock_irq(&pool->lock);
+
+                               rebind_workers(pool);
+                       } else if (pool->cpu < 0) {
+                               restore_unbound_workers_cpumask(pool, cpu);
+                       }
 
-                       spin_unlock_irq(&pool->lock);
                        mutex_unlock(&pool->manager_mutex);
                }
+
+               mutex_unlock(&wq_pool_mutex);
                break;
        }
        return NOTIFY_OK;
@@ -4250,7 +4293,7 @@ EXPORT_SYMBOL_GPL(work_on_cpu);
  * pool->worklist.
  *
  * CONTEXT:
- * Grabs and releases workqueue_lock and pool->lock's.
+ * Grabs and releases wq_pool_mutex, pwq_lock and pool->lock's.
  */
 void freeze_workqueues_begin(void)
 {
@@ -4259,26 +4302,28 @@ void freeze_workqueues_begin(void)
        struct pool_workqueue *pwq;
        int pi;
 
-       spin_lock_irq(&workqueue_lock);
+       mutex_lock(&wq_pool_mutex);
 
        WARN_ON_ONCE(workqueue_freezing);
        workqueue_freezing = true;
 
        /* set FREEZING */
        for_each_pool(pool, pi) {
-               spin_lock(&pool->lock);
+               spin_lock_irq(&pool->lock);
                WARN_ON_ONCE(pool->flags & POOL_FREEZING);
                pool->flags |= POOL_FREEZING;
-               spin_unlock(&pool->lock);
+               spin_unlock_irq(&pool->lock);
        }
 
        /* suppress further executions by setting max_active to zero */
+       spin_lock_irq(&pwq_lock);
        list_for_each_entry(wq, &workqueues, list) {
                for_each_pwq(pwq, wq)
                        pwq_adjust_max_active(pwq);
        }
+       spin_unlock_irq(&pwq_lock);
 
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
 }
 
 /**
@@ -4288,7 +4333,7 @@ void freeze_workqueues_begin(void)
  * between freeze_workqueues_begin() and thaw_workqueues().
  *
  * CONTEXT:
- * Grabs and releases workqueue_lock.
+ * Grabs and releases wq_pool_mutex.
  *
  * RETURNS:
  * %true if some freezable workqueues are still busy.  %false if freezing
@@ -4300,7 +4345,7 @@ bool freeze_workqueues_busy(void)
        struct workqueue_struct *wq;
        struct pool_workqueue *pwq;
 
-       spin_lock_irq(&workqueue_lock);
+       mutex_lock(&wq_pool_mutex);
 
        WARN_ON_ONCE(!workqueue_freezing);
 
@@ -4311,16 +4356,19 @@ bool freeze_workqueues_busy(void)
                 * nr_active is monotonically decreasing.  It's safe
                 * to peek without lock.
                 */
+               rcu_read_lock_sched();
                for_each_pwq(pwq, wq) {
                        WARN_ON_ONCE(pwq->nr_active < 0);
                        if (pwq->nr_active) {
                                busy = true;
+                               rcu_read_unlock_sched();
                                goto out_unlock;
                        }
                }
+               rcu_read_unlock_sched();
        }
 out_unlock:
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
        return busy;
 }
 
@@ -4331,7 +4379,7 @@ out_unlock:
  * frozen works are transferred to their respective pool worklists.
  *
  * CONTEXT:
- * Grabs and releases workqueue_lock and pool->lock's.
+ * Grabs and releases wq_pool_mutex, pwq_lock and pool->lock's.
  */
 void thaw_workqueues(void)
 {
@@ -4340,35 +4388,30 @@ void thaw_workqueues(void)
        struct worker_pool *pool;
        int pi;
 
-       spin_lock_irq(&workqueue_lock);
+       mutex_lock(&wq_pool_mutex);
 
        if (!workqueue_freezing)
                goto out_unlock;
 
        /* clear FREEZING */
        for_each_pool(pool, pi) {
-               spin_lock(&pool->lock);
+               spin_lock_irq(&pool->lock);
                WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
                pool->flags &= ~POOL_FREEZING;
-               spin_unlock(&pool->lock);
+               spin_unlock_irq(&pool->lock);
        }
 
        /* restore max_active and repopulate worklist */
+       spin_lock_irq(&pwq_lock);
        list_for_each_entry(wq, &workqueues, list) {
                for_each_pwq(pwq, wq)
                        pwq_adjust_max_active(pwq);
        }
-
-       /* kick workers */
-       for_each_pool(pool, pi) {
-               spin_lock(&pool->lock);
-               wake_up_worker(pool);
-               spin_unlock(&pool->lock);
-       }
+       spin_unlock_irq(&pwq_lock);
 
        workqueue_freezing = false;
 out_unlock:
-       spin_unlock_irq(&workqueue_lock);
+       mutex_unlock(&wq_pool_mutex);
 }
 #endif /* CONFIG_FREEZER */
 
@@ -4400,7 +4443,9 @@ static int __init init_workqueues(void)
                        pool->attrs->nice = std_nice[i++];
 
                        /* alloc pool ID */
+                       mutex_lock(&wq_pool_mutex);
                        BUG_ON(worker_pool_assign_id(pool));
+                       mutex_unlock(&wq_pool_mutex);
                }
        }
 
@@ -4409,15 +4454,8 @@ static int __init init_workqueues(void)
                struct worker_pool *pool;
 
                for_each_cpu_worker_pool(pool, cpu) {
-                       struct worker *worker;
-
                        pool->flags &= ~POOL_DISASSOCIATED;
-
-                       worker = create_worker(pool);
-                       BUG_ON(!worker);
-                       spin_lock_irq(&pool->lock);
-                       start_worker(worker);
-                       spin_unlock_irq(&pool->lock);
+                       BUG_ON(create_and_start_worker(pool) < 0);
                }
        }