workqueue: cosmetic update in rescuer_thread()
authorTejun Heo <tj@kernel.org>
Thu, 4 Dec 2014 15:14:13 +0000 (10:14 -0500)
committerTejun Heo <tj@kernel.org>
Thu, 4 Dec 2014 15:14:54 +0000 (10:14 -0500)
rescuer_thread() caches &rescuer->scheduled in a local variable
scheduled for convenience.  There's one WARN_ON_ONCE() which was using
&rescuer->scheduled directly.  Replace it with the local variable.

This patch causes no functional difference.

Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c

index 09b685d..5fcd817 100644 (file)
@@ -2248,7 +2248,7 @@ repeat:
                 * Slurp in all works issued via this workqueue and
                 * process'em.
                 */
-               WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
+               WARN_ON_ONCE(!list_empty(scheduled));
                list_for_each_entry_safe(work, n, &pool->worklist, entry)
                        if (get_work_pwq(work) == pwq)
                                move_linked_works(work, scheduled, &n);