]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kernel/workqueue.c: pr_warning/pr_warn & printk/pr_info
authorFabian Frederick <fabf@skynet.be>
Mon, 12 May 2014 17:59:35 +0000 (13:59 -0400)
committerTejun Heo <tj@kernel.org>
Mon, 12 May 2014 17:59:35 +0000 (13:59 -0400)
tj: Refreshed on top of wq/for-3.16.

Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c

index c3f076f0f8fdda2b2a04e14212a1ab3694a7565f..c8411085466f1007278eec109a5af4e03923ee0f 100644 (file)
@@ -4117,8 +4117,8 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
        /* create a new pwq */
        pwq = alloc_unbound_pwq(wq, target_attrs);
        if (!pwq) {
-               pr_warning("workqueue: allocation failed while updating NUMA affinity of \"%s\"\n",
-                          wq->name);
+               pr_warn("workqueue: allocation failed while updating NUMA affinity of \"%s\"\n",
+                       wq->name);
                mutex_lock(&wq->mutex);
                goto use_dfl_pwq;
        }
@@ -4568,7 +4568,7 @@ void print_worker_info(const char *log_lvl, struct task_struct *task)
                probe_kernel_read(desc, worker->desc, sizeof(desc) - 1);
 
        if (fn || name[0] || desc[0]) {
-               printk("%sWorkqueue: %s %pf", log_lvl, name, fn);
+               pr_info("%sWorkqueue: %s %pf", log_lvl, name, fn);
                if (desc[0])
                        pr_cont(" (%s)", desc);
                pr_cont("\n");